Please select a supplier to view the report.
Use the filter above to select a supplier and date range.
Moon Traders
Advance Tax Sales Register
Supplier: {{ $selectedSupplier?->supplier_name ?? 'All' }}
@if($selectedDesignation)
Designation: {{ $selectedDesignation }}
@endif
@if($selectedEmployeeId)
Salesman: {{ $employees->firstWhere('id', $selectedEmployeeId)?->name }}
@endif
@if($selectedVehicleId)
Vehicle: {{ $vehicles->firstWhere('id', $selectedVehicleId)?->registration_number }}
@endif
@if($selectedWarehouseId)
Warehouse: {{ $warehouses->firstWhere('id', $selectedWarehouseId)?->name }}
@endif
For the period {{ \Carbon\Carbon::parse($startDate)->format('d-M-Y') }} to
{{ \Carbon\Carbon::parse($endDate)->format('d-M-Y') }}
Printed by: {{ auth()->user()->name }} | {{ now()->format('d-M-Y h:i A') }}
| # | Date |
Sale
Total Sales
|
Advance Tax (2.5%)
Sale × 2.5%
|
Advance Tax Benefits (NTN Customer) Account 1161
|
Advance Tax Received From Customer Adv. Tax − Benefits
|
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ \Carbon\Carbon::parse($row['date'])->format('d-M-y') }} | {{ number_format($row['sale'], 2) }} | {{ number_format($row['advance_tax'], 2) }} | {{ number_format($row['benefits'], 2) }} | {{ number_format($row['received'], 2) }} |
| Total | {{ number_format($totalSale, 2) }} | {{ number_format($totalAdvanceTax, 2) }} | {{ number_format($totalBenefits, 2) }} | {{ number_format($totalReceived, 2) }} | |