@extends('layouts.user') @section('title', 'Employee List') @section('content') @if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif
Add Employee Export Excel Export PDF Import Settings Total Employees: {{ $employees->total() }}
@include('employees._table')
@push('scripts') @endpush @endsection