@extends('layouts.admin') @section('title', 'Dasbor') @section('page-title', 'Dasbor') @section('page-subtitle', 'Overview sistem rekrutmen karyawan') @section('content')
@foreach($stats as $stat)
{{ number_format($stat['value']) }}
{{ $stat['label'] }}
@endforeach
{{-- Recent Applicants --}} @if($recentApplicants->count())

Pelamar Terbaru

Lihat Semua
@foreach($recentApplicants as $applicant) @endforeach
Nama Lowongan Status Tanggal
{{ $applicant->full_name }} {{ $applicant->vacancy->title ?? '-' }} @switch($applicant->status) @case('TERKIRIM') Terkirim @break @case('PROSES') Proses @break @case('DITERIMA') Diterima @break @case('DITOLAK') Ditolak @break @default {{ $applicant->status }} @endswitch {{ $applicant->created_at->format('d M Y') }}
@endif @endsection