{{-- admin/pages/applications/index.blade.php --}} @extends('admin.layouts.app') @section('title','CV Applications') @section('page-title','CV Applications') @section('content')
| # | Applicant | Position | CV | Date | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $app->id }} |
{{ $app->name }}
{{ $app->email }}
|
{{ $app->position_applied ?? '—' }} | @if($app->cv_file) CV @else No file @endif | {{ $app->created_at->format('d M Y') }} | @php $sc=['new'=>['#fef9c3','#854d0e'],'reviewed'=>['#eff6ff','#1d4ed8'],'shortlisted'=>['#f0fdf4','#166534'],'rejected'=>['#fee2e2','#991b1b']]; $c=$sc[$app->status]??['#f1f5f9','#374151']; @endphp {{ ucfirst($app->status) }} | |
| No applications yet. | ||||||