@extends('sales.layout.guest-layout') @section('main')

Order Details

@forelse($orders as $index => $order) @empty @endforelse
S.No. Order Id Customer Customer Phone Total Product Total Amount HST Amount Grand Total View 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) }}
No orders found for this customer.
@endsection