@extends('layouts.admin') @section('title', 'Job Applications') @section('content_header')

Job Applications

@stop @section('content')

List of Job Applications

@forelse($applications as $index => $application) @empty @endforelse
# Applicant Name Email Phone Applied Date Actions
{{ ($applications->currentPage() - 1) * $applications->perPage() + $index + 1 }} {{ $application->first_name }} {{ $application->last_name }} {{ $application->email }} {{ $application->phone }} {{ $application->created_at->format('M d, Y') }} View
@csrf @method('DELETE')
No applications found.
@if($applications->hasPages()) @endif
@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') @stop