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

Reports

@csrf
@forelse ($orders as $index => $order) @empty @endforelse
S.No. Ordered Date Customer Name No. Of Products Total Amount HST Amount Grand Total View Details
{{ $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 }}
No records found
@endsection