@forelse($orders as $index => $order)
{{ $index + 1 }} |
{{ $order->id }} |
{{ $customer->contact_person }} |
{{ $customer->phone }} |
{{ $order->total_product }} |
${{ number_format($order->total_amount, 2) }} |
${{ number_format($order->tax, 2) }} |
${{ number_format($order->grand_total, 2) }} |
|
@empty
No orders found for this customer. |
@endforelse