@extends('garage.layouts.app') @section('title', 'Employee fund setup') @section('content') @include('garage.hr.styles')
Employee fund setup
Create salary slabs to auto-deduct employee fund every payroll month.
Employees
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($slabs as $s) @empty @endforelse
Min salary Max salary Deduction amount Status Actions
{{ number_format((float) $s->min_salary, 2) }} {{ $s->max_salary !== null ? number_format((float) $s->max_salary, 2) : 'No upper limit' }} {{ number_format((float) $s->deduction_amount, 2) }} @if($s->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
No employee fund slabs found.
@if(method_exists($slabs,'links'))
{{ $slabs->links() }}
@endif
@push('scripts') @endpush @endsection