| SL |
Courier Invoice No |
Courier Date |
Sender Name |
Recipient Branch |
Recipient Name |
Status |
Action |
@forelse($courierList as $key=>$courier)
| {{ $key+1 }} |
{{ $courier->invoice_id }} |
{{ $courier->created_at->toDateString() }} |
{{ $courier->sender_name }} |
{{ $courier->receiver_branch->name }} |
{{ $courier->receiver_name }} |
@if($courier->status == 'Delivered')
Delivered
@else
Received
@endif
|
|
@empty
| No Information |
@endforelse
{{ $courierList->appends(['search'=>request()->search,'start_date'=>request()->start_date,'end_date'=>request()->end_date])->links() }}