@extends('admin.layouts.app') @section('title', 'Tax Report') @section('content')
VAT {{ $taxRate }}% - {{ $startDate->format('M d, Y') }} to {{ $endDate->format('M d, Y') }}
Output Tax (Collected)
₦{{ number_format($totalOutputTax, 0) }}
Input Tax (Paid)
₦{{ number_format($totalInputTax, 0) }}
{{ $netTaxPayable >= 0 ? 'Tax Payable' : 'Tax Claimable' }}
₦{{ number_format(abs($netTaxPayable), 0) }}
| Room Revenue VAT | ₦{{ number_format($roomTax, 0) }} |
| POS Revenue VAT | ₦{{ number_format($posTax, 0) }} |
| Invoice VAT | ₦{{ number_format($invoiceTax, 0) }} |
| Total Output Tax | ₦{{ number_format($totalOutputTax, 0) }} |
| Expense VAT (Paid to Suppliers) | ₦{{ number_format($expenseTax, 0) }} |
| Total Input Tax | ₦{{ number_format($totalInputTax, 0) }} |
| Month | Output Tax | Input Tax | Net Tax |
|---|---|---|---|
| {{ $data['month'] }} | ₦{{ number_format($data['output_tax'], 0) }} | ₦{{ number_format($data['input_tax'], 0) }} | ₦{{ number_format($data['output_tax'] - $data['input_tax'], 0) }} |