@extends('layouts.app',['path'=>'allowanceType.index']) @section('title', 'Allowance Types - HRMS') @section('content') @can('allowance.read|allowance.create|allowance.update|allowance.delete')
@include('partials.new_alerts')
Allowance Types List
@foreach ($allowanceTypes as $allowanceType) @endforeach
Name Taxable Status Actions
{{ $allowanceType['name'] }}
@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
@endcan @endsection