S.No. |
Ordered Date |
Customer Name |
No. Of Products |
Total Amount |
HST Amount |
Grand Total |
View Details |
@forelse ($orders as $index => $order)
{{ $index + 1 }} |
{{ \Carbon\Carbon::parse($order->created_at)->format('d/m/Y') }}
|
{{ $order->customer_name ?? 'N/A' }} |
{{ $order->total_product }} |
{{ $order->total_amount }} |
{{ $order->tax }} |
{{ $order->grand_total }} |
|
@empty
No records found |
@endforelse