Allowances

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($allowances as $allowance) @empty @endforelse
Name Type Amount Taxable Status Actions
{{ $allowance->name }}
@if($allowance->description)
{{ Str::limit($allowance->description, 50) }}
@endif
{{ ucfirst($allowance->type) }}
@if($allowance->type == 'percentage') {{ number_format($allowance->amount, 2) }}% @else {{ number_format($allowance->amount, 2) }} TZS @endif
@if($allowance->is_taxable) Taxable @else Non-taxable @endif @if($allowance->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No allowances found. Create one to get started.
{{ $allowances->links() }}