@extends('layouts.admin') @section('title', 'Lamaran Pekerjaan') @section('content')
Kelola dan review lamaran pekerjaan yang masuk
| Pelamar | Posisi | Status | Tanggal Apply | Aksi |
|---|---|---|---|---|
|
{{ $application->name }}
{{ $application->email }}
@if($application->phone)
{{ $application->phone }}
@endif
|
{{ $application->jobListing->title ?? 'N/A' }}
{{ $application->jobListing->department ?? '' }}
|
@switch($application->status) @case('pending') Pending @break @case('reviewed') Reviewed @break @case('accepted') Accepted @break @case('rejected') Rejected @break @default {{ ucfirst($application->status) }} @endswitch | {{ $application->created_at->format('d M Y') }} | |
Belum ada lamaranLamaran pekerjaan akan muncul di sini |
||||