Company Info
Company Name: {{ $company->company }}
Customer: {{ $company->name }}
Email: {{ $company->email }}
Phone No: {{ $company->phone }}
{{ __('Pending Orders') }}
# | Issue Date | Order No | Amount | Due Date | Promises |
---|---|---|---|---|---|
{{ ++$id }} | {{ $order->invoice ? \Carbon\Carbon::parse($order->invoice->date)->format('d M, Y') : '' }} | {{ $order->order_number }} | {{ $order->grand_total }} | {{ $order->invoice ? \Carbon\Carbon::parse($order->invoice->due_date)->format('d M, Y') : '' }} |
@if ($order->invoice?->promises->count() > 0)
Latest: {{ $latestPromise ? Carbon::parse($latestPromise->promise_date)->format('d M Y') : 'N/A' }} @else No Promises @endif |
Total: {{ $orders->sum('grand_total') }} |