@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content')
{{ $data['pageTitle'] }}
{!! Form::text('fiscal_year', $data['model']->fiscal_year->name, [ 'class' => 'form-control', 'id' => 'fiscal_year', 'readonly' => true ]) !!}
For Male:
@if($data['model']['config_details']) @php $sl = 0 @endphp @foreach($data['model']['config_details'] as $key => $record) @if($record['gender'] == 'Male') @php $sl = $sl + 1 @endphp @endif @endforeach @else @endif
Taxable Amount Tax Percentage (Digit)
{{ ($sl == 0) ? 'First' : 'Next' }} @if($record['taxable_amount']) {{ number_format($record['taxable_amount'], 2) }} @else ∞ @endif {{ $record['taxable_percentage'] }}%
No Result Found
For Female:
@if($data['model']['config_details']) @php $sl = 0 @endphp @foreach($data['model']['config_details'] as $record) @if($record['gender'] == 'Female') @php $sl = $sl + 1 @endphp @endif @endforeach @else @endif
Taxable Amount Tax Percentage (Digit)
{{ ($sl == 0) ? 'First' : 'Next' }} @if($record['taxable_amount']) {{ number_format($record['taxable_amount'], 2) }} @else ∞ @endif {{ $record['taxable_percentage'] }}%
No Result Found
@endsection