@extends('layouts/layoutMaster') @section('title', $pageTitle) @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/select2/select2.scss', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/moment/moment.js', '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/js/main-helper.js', 'resources/assets/js/app/employee-index.js', 'resources/js/main-select2.js' ]) @endsection @section('content')
{{-- Breadcrumb --}} {{-- Statistics Cards --}}
{{ __('Total') }}
{{$totalUser}}
{{ __('All Employees') }}
{{ __('Active') }}
{{$active}}
{{ __('Active Employees') }}
{{ __('Inactive') }}
{{$inactive}}
{{ __('Inactive Employees') }}
{{ __('Exited') }}
{{$relieved}}
{{ __('Relieved/Terminated') }}
{{-- Filters Card --}}
{{ __('Filters') }}
{{-- Employees List --}}
{{ __('ID') }} {{ __('Employee') }} {{ __('Phone') }} {{ __('Role') }} {{ __('Attendance Type') }} {{ __('Team') }} {{ __('Status') }} {{ __('Actions') }}
@endsection