@extends('layouts.layoutMaster') @section('title', __('Leave Balance Management')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.js' ]) @endsection @section('page-script') @vite(['resources/assets/js/app/hrcore-leave-balance.js']) @endsection @section('content')
{{-- Breadcrumb Component --}} {{-- Permission check removed --}} {{-- Filters --}}
{{-- Leave Balance Table --}}
{{ __('Employee Leave Balances') }}
@foreach(App\Models\LeaveType::where('status', 'active')->get() as $leaveType) @endforeach
{{ __('Employee') }} {{ __('Code') }} {{ __('Designation') }} {{ __('Team') }}{{ $leaveType->code }}{{ __('Actions') }}
{{-- Bulk Set Initial Balance Modal --}} {{-- Page Data --}} @endsection