@extends('layouts.dashboard') @section('title', 'Applicants for ' . $job->title) @section('content')

Applicants for: {{ $job->title }}

All Applications ({{ $applications->total() }})
@forelse($applications as $app) @empty @endforelse
Freelancer Profile Title Applied On Status Actions
@if($app->freelancer->profile_photo) @else @endif
{{ $app->freelancer->freelancerProfile->title ?? 'N/A' }} {{ $app->created_at->format('d M, Y') }} @if($app->status == 'pending') Pending Review @elseif($app->status == 'accepted') Accepted @else Rejected @endif
No applications received yet.
{{ $applications->links() }}
@endsection