@extends('admin.admin_master') @section('admin')

All Sales

@foreach ($allData as $key => $item) @endforeach
Sl Warehouse Status Cust Name Grand Total Paid Amount Due Amount Created Action
{{ $key + 1 }} {{ $item['warehouse']['name'] }} {{ $item->status }} {{ $item->customer?->name ?? 'N/A' }} ${{ $item->grand_total }}

${{ $item->paid_amount }}

${{ $item->due_amount }}

{{ \Carbon\Carbon::parse($item->created_at)->format('Y-m-d') }}
@endsection