Order Report
Specify which categories you would like to exclude:
By doing so - any order found with any selected categories will be excluded from the report. Therefore enabling you to filter out stuff such as all orders without bread.
All Orders
Orders (Count: {{$totalOrders->count()}}) - Total: £{{number_format($totalOrders->sum("total"),2)}}
Invoice ID | Type | Customer Name | Order Details | Self Isolation | Status | Total | Actions |
---|---|---|---|---|---|---|---|
{{ $order->id }} | {{ ($order->IsEdible == '1') ? 'Edible16' : 'MINOnline'}} | {{$order->DeliveryFirstName}} {{$order->DeliveryLastName}},@if($order->DeliveryAddressLine1){{$order->DeliveryAddressLine1}},
@endif
@if($order->DeliveryAddressLine2)
{{$order->DeliveryAddressLine2}},
@endif
@if($order->DeliveryAddressLine3)
{{$order->DeliveryAddressLine3}},
@endif
@if($order->DeliveryCity)
{{$order->DeliveryCity}},
@endif
@if($order->DeliveryCounty)
{{$order->DeliveryCounty}},
@endif
@if($order->DeliveryPostcode)
{{$order->DeliveryPostcode}}
@endif
|
Ordered: {{$carbon->format('l jS F Y @ h:i:s A')}}
@if($order->DeliveryNotes)
Notes: {{$order->DeliveryNotes}}
@endif
|
@if($order->SelfIsolating)
YES - SELF ISOLATION
@else
NO
@endif
|
@if($order->status == "0")
UNPAID
@else
@if($order->status == "paid")
{{strtoupper($order->status)}}
@elseif($order->status == "picking")
{{strtoupper($order->status)}}
@elseif($order->status == "picked")
{{strtoupper($order->status)}}
@elseif($order->status == "completed")
{{strtoupper($order->status)}}
@else
{{strtoupper($order->status)}}
@endif
@endif
|
£{{ number_format( $order->total, 2)}} | View Delete |