@extends('layouts.dashboard.superadminapp') @section('title', 'Employee Details') @section('styles') @endsection @section('content')

UEPL | Employee Details

day, 00 month 0000
@if(session('success')) @endif @if(session('error')) @endif @if(session('errorRows')) @endif
Employee List
@foreach($employees as $employee) @endforeach
Employee ID Image Employee Name Gender Department Designation Date of Birth Date of Joining Contact Number Aadhar Number Category Status Actions
{{ $employee->employee_id }} @if($employee->profile_picture) Profile @else @endif {{ $employee->name }} {{ $employee->gender }} {{ $employee->department }} {{ $employee->designation }} {{ $employee->dob }} {{ $employee->doj }} {{ $employee->mobile }} {{ $employee->aadhar_number }} @switch($employee->category) @case('E') Employee @break @case('M') Management @break @case('O') Others @break @default NA @endswitch @if(strtolower($employee->status) == 'active') Active @else Inactive @endif
@endsection @section('scripts') @endsection