{{-- ===================================================== HEADER ====================================================== --}}

Printing Details

Invoice #{{ $invoice->invoice_id }}
Printing Requirement Details
{{-- ===================================================== INVOICE DETAILS ====================================================== --}}
Invoice Number {{ $invoice->invoice_id ?? 'N/A' }} Total Quantity {{ $invoice->invoiceItems?->sum('quantity') ?? 0 }}
{{-- ===================================================== DESIGN SECTION ====================================================== --}}
Printing Design
Design
@if(!empty($invoice->printingRequirement->front_design)) Printing Design @else
No design uploaded
@endif
{{-- ===================================================== PRINTING ITEMS ====================================================== --}}
Printing Items
@forelse($invoice->printingRequirement->items as $index => $pItem) @empty @endforelse
S.No Name Number Size
{{ $index + 1 }} {{ $pItem->name ?? 'N/A' }} {{ $pItem->number ?? 'N/A' }} {{ $pItem->size->name ?? 'N/A' }}
No items recorded