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

UEPL | Employee Details

day, 00 month 0000
@if (session('success')) @endif @if (session('error')) @endif
@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 Picture @else @endif {{ $employee->name }} {{ $employee->gender }} {{ $employee->department }} {{ $employee->designation }} {{ $employee->dob }} {{ $employee->doj }} {{ $employee->mobile }} {{ $employee->aadhar_number }} {{ $employee->category }} @if (strtolower($employee->status) == 'active') Active @else Inactive @endif Edit
@csrf @method('DELETE')
@if ($errors->any())
@endif
@csrf
New Employee Details








@endsection @section('scripts') @endsection