@extends('garage.layouts.app') @section('title', 'Parts issuance') @push('styles') @include('shared.garage-parts-issuance-ui-styles') @endpush @section('content')

Parts issuance

Stock removed from inventory for work orders or the floor. Each issue is recorded and cannot be edited here.

New issuance
@if($search) Clear @endif
@forelse($issuances as $row) @empty @endforelse
Issuance # Date Work order Issued by Lines Actions
{{ $row->issuance_number }} {{ \Carbon\Carbon::parse($row->issued_at)->format('M j, Y') }} {{ $row->work_order_number ?? '—' }} {{ $row->admin_name ?? '—' }} {{ $lineCounts[$row->id] ?? 0 }}
No issuances yet. Issue parts from stock.
@if($issuances->hasPages())
{{ $issuances->withQueryString()->links() }}
@endif
@endsection