@extends('layouts.sidebar')
@section('title', 'Employee')
@section('content')
@if (in_array('Manage Employee', $privileges))
@include('Admin.Employee.modal')
Employee List
@if (in_array('Create Employee', $privileges))
@endif
@if (session('success'))
{{ session('success') }}
@endif
@include('Admin.Employee.preemployed')
@include('Admin.Employee.terminated')
ID |
Agency |
company |
Client |
profile |
Name |
Date of Birth |
Status |
Bank Status |
Email |
Actions |
Success
Employee deleted successfully!
Confirmation
Are you sure you want to delete this employee? This action cannot be undone.
@else
You don't have privilege to access this page
@endif
@endsection