@extends('hr_main') @section('title', '| ' . $data['pageTitle']) @section('content')
{{ $data['pageTitle'] }}
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!} id }}' />
{!! 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) Action
@if($record['taxable_amount']) @if($record['taxable_amount'] && $sl != 0) @endif @endif

For Female:
@if($data['model']['config_details']) @php $sl = 0 @endphp @foreach($data['model']['config_details'] as $key => $record) @if($record['gender'] == 'Female') @php $sl = $sl + 1 @endphp @endif @endforeach @else @endif
Taxable Amount Tax Percentage (Digit) Action
@if($record['taxable_amount']) @if($record['taxable_amount'] && $sl != 0) @endif @endif

{!! Form::submit('Update', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection