My Applications
Apply New
@if(session('success'))
{{ session('success') }}
@endif @if($applications->count() === 0)

No Applications Found

You haven’t applied for any internship yet.

Apply Now
@else
@foreach($applications as $app) @endforeach
ID Domain / Course Mode Duration Status Applied On
#{{ $app->id }} {{ $app->preferred_domain ?? $app->course }} {{ $app->internship_mode ?? '-' }} {{ $app->internship_duration ?? '-' }} {{ $app->status }} {{ \Carbon\Carbon::parse($app->created_at)->format('d M Y') }} View
@foreach($applications as $app)
{{ $app->preferred_domain ?? $app->course }}
{{ $app->status }}
Application #{{ $app->id }}
Mode: {{ $app->internship_mode ?? '-' }}
Duration: {{ $app->internship_duration ?? '-' }}
Applied: {{ \Carbon\Carbon::parse($app->created_at)->format('d M Y') }}
View Details
@endforeach
@endif