@extends('layouts.admin') @section('title', 'Tax Report') @section('page-title', 'Tax Report') @section('header-actions') download Export CSV @endsection @section('content')

Tax Report

Period: {{ \Carbon\Carbon::parse($report['date_from'])->format('M d, Y') }} to {{ \Carbon\Carbon::parse($report['date_to'])->format('M d, Y') }}

Income Tax Collected

Total Income {{ number_format($report['income']['total'], 2) }}
Tax Collected {{ number_format($report['income']['tax_collected'], 2) }}
Transactions {{ $report['income']['count'] }}

Expense Tax Paid

Total Expenses {{ number_format($report['expenses']['total'], 2) }}
Tax Paid {{ number_format($report['expenses']['tax_paid'], 2) }}
Transactions {{ $report['expenses']['count'] }}
Net Tax Owed {{ number_format($report['net_tax_owed'], 2) }}
@endsection