@extends('layouts.master') @section('title',__('index.employee_tax_report')) @section('action',__('index.tax_report_generate')) @section('main-content')
@include('admin.section.flash_message') @include('admin.payroll.taxReport.common.breadcrumb')
{{ __('index.tax_report') }}
{{ __('index.fiscal_year') }}
{{ __('index.employee') }}
{{ __('index.clear') }}
@if(isset($filterData['employee_id']) && isset($filterData['year']) && !empty($reportData)) @else @forelse($reportData as $report) @empty @endforelse @endif
# {{ __('index.fiscal_year') }} {{ __('index.employee_name') }} {{ __('index.tax_payable') }} {{ __('index.action') }}
# {{ $reportData['year'] ?? '' }} {{ $reportData['name'] ?? '' }} {{ $reportData['total_payable_tds'] ?? '' }}
{{ $loop->iteration }} {{ $report->year }} {{ $report->name }} {{ $report->total_payable_tds }}

{{ __('index.no_records_found') }}

@endsection