@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Monthly TDS Report')) @section('content')
| {{ __('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.') }} | ||||||||