@extends('layouts.app',['path'=>'allowanceEmployee.index']) @section('title', 'Employee Allowances - HRMS') @section('content') @can('employee_allowance.read|employee_allowance.create|employee_allowance.update|employee_allowance.delete')
@include('partials.new_alerts')
Employee Allowances List
@foreach ($employeeAllowances as $employeeAllowance) @endforeach
Employee Name Employee No Allowance Type Amount Issue Date Actions
@if($employeeAllowance['employee_profile_image']) img @else img @endif

{{ $employeeAllowance['employee_no'] }}

{{ $employeeAllowance['allowance_type_name'] }} {{ amount_format_number($employeeAllowance['amount'])?? '*****' }} {{ formatDisplayDate($employeeAllowance['issue_date']) }}
@can('employee_allowance.update') @endcan @can('employee_allowance.delete') @endcan @can('logs.read') @endcan
@if(hasPermission('employee_allowance.create|employee_allowance.update|employee_allowance.delete', 'all')) @endif @endcan @endsection @push('scripts') @endpush