Category
{{ \App\Models\BookingCategory::find($item->category_id)?->name ?? 'Not Specified' }}
Print Paper Size
{{ \App\Models\PaperSize::find($item->paper_size_id)?->name ?? 'Not Specified' }}
Paper GSM
{{ \App\Models\PaperGsm::find($item->paper_gsm_id)?->name ?? 'Not Specified' }}
Print Type
{{ \App\Models\PrintType::find($item->print_type_id)?->name ?? 'Not Specified' }}
Lamination
{{ \App\Models\Lamination::find($item->lamination_id)?->name ?? 'NONE' }}
Lamination Side
{{ \App\Models\LaminationSide::find($item->lamination_side_id)?->name ?? 'NONE' }}
@if($item->carbon_copy || $item->bill_binding)
Carbon Copy
{{ $item->carbon_copy ?: '-' }}
Binding
{{ $item->bill_binding ?: '-' }}
@endif
Amount
₹{{ number_format($booking->grand_total, 2) }}
Total Print Quantity
{{ $item->quantity ?? $item->total_quantity ?? 0 }}