@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Monthly TDS Report')) @section('content')
{{ \App\Services\PayrollIncomeTaxService::label() }} — {{ __('Monthly deduction register') }}
{{ __('TDS Settings') }}
{{ __('Total gross') }}: {{ number_format($totalGross, 2) }}
{{ __('Total taxable') }}: {{ number_format($totalTaxable, 2) }}
{{ __('Total TDS') }}: {{ number_format($totalTds, 2) }}
@forelse($rows as $row) @php $setup = \App\Models\SalarySetup::where('staff_id', $row->staff_id)->first(); @endphp @empty @endforelse
{{ __('Employee') }} {{ __('TIN') }} {{ __('Department') }} {{ __('Branch') }} {{ __('Gross') }} {{ __('Taxable') }} {{ __('TDS') }} {{ __('Net') }} {{ __('Status') }}
{{ $row->staff->user->name ?? '-' }} {{ $setup?->tin_number ?? '-' }} {{ $row->staff->department->name ?? '-' }} {{ $row->staff->warehouse->name ?? '-' }} {{ number_format($row->gross_salary, 2) }} {{ number_format($row->taxable_income ?? 0, 2) }} {{ number_format($row->income_tax, 2) }} {{ number_format($row->net_salary, 2) }} {{ $row->status }}
{{ __('No TDS deductions for this period.') }}
@endsection