@extends('layouts.admin') @section('title', 'Recruitment & Hiring') @section('content')

Recruitment & Hiring

Back to Dashboard
@if(session('status'))
{{ session('status') }}
@endif
Employees
{{ $employeeCount ?? 0 }}
Branches
{{ $branchCount ?? 0 }}
Quick Actions
Start a Recruitment Request
@csrf
Recent Employees
@forelse(($recentEmployees ?? []) as $emp) @empty @endforelse
Name Email Branch Joined
{{ $emp->name ?? '-' }} {{ $emp->email ?? '-' }} {{ $emp->branch->name ?? '-' }} {{ optional($emp->created_at)->format('Y-m-d') }}
No recent employees found.
@endsection