{!! Form::open(['url' => 'foo/bar', 'id' => 'taxPaymentForm']) !!} @if (isset($operation) && $operation == 'add')
{!! Form::label('chalan_no', 'Chalan No: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('payment_date', 'Payment Date: ', ['class' => 'col-sm-3 control-label']) !!}
@if (isset($banks))
{!! Form::label('bank_id', 'Bank: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('bank_id', ['' => 'Select'] + $banks, '', [ 'id' => 'bank_id', 'class' => 'form-control input-sm selectPicker', ]) !!}
{!! Form::label('bank_account_id', 'Bank Account: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('bank_account_id', ['' => 'Select'], '', [ 'id' => 'bank_account_id', 'class' => 'form-control input-sm selectPicker', ]) !!}
@endif
@endif @if (isset($operation) && ($operation == 'view' || $operation == 'edit')) {!! Form::hidden('incomeTaxPaymentId', encrypt($payment->id)) !!}
{!! Form::label('chalan_no', 'Chalan No: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('payment_date', 'Payment Date: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('', 'Month From: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('', 'Month To: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('project', 'Project: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('project_type', 'Project Type: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('bank', 'Bank: ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::label('bank_account', 'Bank Account: ', ['class' => 'col-sm-3 control-label']) !!}
@endif
@php $slNo = 1; @endphp @foreach ($employees as $employee) @php if ($operation == 'view' && (int) @$paymentDetails[$employee->id]->income_tax_amount_paid == 0) { continue; } @endphp @php $taxAmountPaid = isset($operation) && ($operation == 'view' || $operation == 'edit') ? (int) @$paymentDetails[$employee->id]->income_tax_amount_paid : (int) @$employee->income_tax; @endphp @if (isset($operation) && $operation == 'view') @else @endif @endforeach @if (isset($operation) && $operation == 'view') @endif
Sl No Name TIN Designation Mobile E-mail Basic Pay Bonus, Arrear, Advance, Leave, Overtime House Rent Allowance Conveyance Allowance Medical Allowance Other Allowance Value of Non-Cash Benefits: Accomodation Value of Non-Cash Benefits: Conveyance Value of Non-Cash Benefits: Other Employer's Contribution to RPF/GF/PF Others (Non-perquisite) Total Amount of Tax deducted Amount of Tax Paid
{{ $slNo++ }} {{ $employee->emp_name_english }} {{ $employee->tin_number }} {{ $employee->position_name }} {{ $employee->mobile_number }} {{ $employee->email }} {{ number_format(@$employee->basic_salary) }} {{ number_format(@$employee->arrear + @$employee->bonus) }} {{ number_format(@$employee->houseAllowance) }} {{ number_format(@$employee->conveyanceAllowance) }} {{ number_format(@$employee->medicalAllowance) }} {{ number_format(@$employee->otherAllowance) }} {{ number_format(0) }} {{ number_format(0) }} {{ number_format(0) }} {{ number_format(@$employee->pf_org) }} {{ number_format(0) }} {{ number_format(@$employee->total) }} {{ number_format(@$employee->income_tax) }}{{ number_format($taxAmountPaid) }}
Total {{ number_format($employees->sum('income_tax')) }} {{ number_format($paymentDetails->sum('income_tax_amount_paid')) }}
@if (isset($operation) && $operation == 'view')
@else
@endif {!! Form::close() !!}