@extends('dashboard.base') @section('content') {{-- Show validation errors --}} @if ($errors->any())
@endif {{-- Show success message --}} @if (session('success'))
{{ session('success') }}
@endif

My Applications

@if($applications->isEmpty())
You have not submitted any applications yet.
@else @foreach($applications as $index => $app) @endforeach
# Position Status Applied On Action
{{ $index + 1 }} {{ $app->position }} {{ $app->status ?? 'Pending' }} {{ $app->created_at->format('d M, Y') }} View
@endif
@endsection