@extends('pages.admin.layout')
@section('content')
Christmas Orders
Supplier Report
Order Breakdown by Payment Status
@if($orders['outstanding'] && count($orders['outstanding']) > 0)
@foreach($orders['outstanding'] as $order)
@php $carbon = new Carbon\Carbon($order->created_at); @endphp
Invoice ID
Type
Customer Name
Order Details
Balance
Status
Total
Actions
@endforeach
@endif
{{ $order->id }}
{{$order->DeliveryFirstName}} {{$order->DeliveryLastName}}
,
@if($order->DeliveryAddressLine1)
@if($order->AmountRemaning <= 0 || $order->AmountRemaning == null)
@if($order->status == "0")
£{{ number_format( $order->total, 2)}}
View
@if($orders['paid'] && count($orders['paid']) > 0)
@foreach($orders['paid'] as $order)
@php $carbon = new Carbon\Carbon($order->created_at); @endphp
Invoice ID
Type
Customer Name
Order Details
Balance
Status
Total
Actions
@endforeach
@endif
{{ $order->id }}
{{$order->DeliveryFirstName}} {{$order->DeliveryLastName}}
,
@if($order->DeliveryAddressLine1)
@if($order->AmountRemaning <= 0 || $order->AmountRemaning == null)
@if($order->status == "0")
£{{ number_format( $order->total, 2)}}
View
@if($orders['unpaid'] && count($orders['unpaid']) > 0)
@foreach($orders['unpaid'] as $order)
@php $carbon = new Carbon\Carbon($order->created_at); @endphp
Invoice ID
Type
Customer Name
Order Details
Balance
Status
Total
Actions
@endforeach
@endif
{{ $order->id }}
{{$order->DeliveryFirstName}} {{$order->DeliveryLastName}}
,
@if($order->DeliveryAddressLine1)
@if($order->AmountRemaning <= 0 || $order->AmountRemaning == null)
@if($order->status == "0")
£{{ number_format( $order->total, 2)}}
View
Orders by Collection Time
@if($timeorders[$collectiontiming] && count($timeorders[$collectiontiming]) > 0)
@foreach($timeorders[$collectiontiming] as $order)
@php $carbon = new Carbon\Carbon($order->created_at); @endphp
Invoice ID
Type
Customer Name
Order Details
Total
Actions
@endforeach
@endif
{{ $order->id }}
{{$order->DeliveryFirstName}} {{$order->DeliveryLastName}}
,
@if($order->DeliveryAddressLine1)
@if($order->AmountRemaning <= 0 || $order->AmountRemaning == null)
£{{ number_format( $order->total, 2)}}
View