@extends('admin.layouts.app') @section('title', 'Order Summary') @section('page_title', 'Order Summary List') @section('content')
Print
@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) }}
@endsection @section('scripts') @endsection