@extends('admin.layouts.app') @section('title', 'Career Applications') @section('content')

Career Applications

@forelse(($apiData['data'] ?? []) as $application) @empty @endforelse
Applicant Position Email Phone Applied Date Status Actions
{{ $application['applicant_name'] }} {{ $application['career']['title'] ?? 'N/A' }} {{ $application['applicant_email'] }} {{ $application['applicant_phone'] }} {{ \Carbon\Carbon::parse($application['submitted_at'])->format('M d, Y') }} @php $statusColors = [ 'pending' => 'warning', 'reviewed' => 'info', 'interviewed' => 'primary', 'accepted' => 'success', 'rejected' => 'danger' ]; @endphp {{ ucfirst($application['status']) }}

No applications found

@if(isset($apiData['meta']) && $apiData['meta']['last_page'] > 1) @endif
@foreach(($apiData['data'] ?? []) as $application) @endforeach @endsection