@include('docs._printhead', ['title'=>'WEIGHBRIDGE TICKET','no'=>$t->ticket_no,'date'=>'Date: '.fdate($t->ticket_date)])
Vehicle: {{ $t->vehicle_no }}
Driver: {{ $t->driver_name ?? '—' }}
Transporter: {{ $t->transporter->name ?? '—' }}
Customer: {{ $t->customer->name ?? '—' }}
Product: {{ $t->product->display_name ?? '—' }}
Type: {{ $t->transaction_type }}
Status: {{ ucfirst($t->status) }}
Weight (t)Time
Gross{{ qty($t->gross_weight) }}{{ $t->first_weight_time?->format('H:i') }}
Tare{{ qty($t->tare_weight) }}{{ $t->second_weight_time?->format('H:i') }}
NET{{ qty($t->net_weight) }}

Operator: {{ $t->operator->name ?? '—' }} · {{ $t->remarks }}

@include('docs._printfoot', [])