{{ $settings['company_name'] ?? 'Inventory Management System' }}
ORDER SUMMARY REPORT
Shipment Notes
@php $allNotes = $summary->pluck('shipment_notes')->flatten()->unique()->filter(); @endphp @if($allNotes->count() > 0) @foreach($allNotes as $note) {{ $note }} @endforeach @else No shipment notes available @endif
@forelse($summary as $index => $item) @empty @endforelse
SL No Shipment Notes Main Category Product Name Unit Total Qty
{{ $index + 1 }} @if($item['shipment_notes']->count() > 0) @foreach($item['shipment_notes']->unique() as $note) {{ $note }} @endforeach @else -- @endif {{ $item['main_category'] }} {{ $item['product_name'] }} {{ $item['unit'] }} {{ number_format($item['total_qty'], 3) }}
No order data found
TOTAL {{ number_format($summary->sum('total_qty'), 3) }}