@extends('admin.layouts.app') @section('title', 'Tax Report') @section('content')

Tax/VAT Report

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) }}

Output Tax Breakdown

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) }}

Input Tax Breakdown

Expense VAT (Paid to Suppliers) ₦{{ number_format($expenseTax, 0) }}
Total Input Tax ₦{{ number_format($totalInputTax, 0) }}

Monthly Tax Summary

@foreach($monthlyData as $data) @endforeach
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) }}
@endsection