@extends('layouts.app',['path'=>'allowanceType.index'])
@section('title', 'Allowance Types - HRMS')
@section('content')
@can('allowance.read|allowance.create|allowance.update|allowance.delete')
Allowance Types
@can('allowance.create')
@endcan
@include('partials.new_alerts')
| Name |
Taxable |
Status |
Actions |
@foreach ($allowanceTypes as $allowanceType)
|
|
@if($allowanceType['taxable'])
Yes
@else
No
@endif
|
@if($allowanceType['status'])
Active
@else
Inactive
@endif
|
@can('allowance.update')
@endcan
@can('allowance.delete')
@endcan
@can('logs.read')
@endcan
|
@endforeach
@endcan
@endsection