@extends('layouts.app') @section('page-content')
{{ __('Allowances') }}
@if (!empty($allowances)) @foreach ($allowances as $allowance) @include('pages.payroll.allowances.actions', ['id' => $allowance->id]) @endforeach @endif
{{ __('Name') }} {{ __('Amount') }} {{ __('Action') }}
{{ $allowance->name }} {{ LocaleSettings('currency_symbol').' '. $allowance->amount }}
@endsection @push('page-scripts') @endpush