{{ get_phrase('Your application') }}

@php $applications = App\Models\Application::where('user_id', Auth()->user()->id)->get(); @endphp @foreach ($applications as $key => $application) @endforeach
# {{ get_phrase('name') }} {{ get_phrase('document') }} {{ get_phrase('details') }} {{ get_phrase('status') }}
{{ ++$key }} {{ get_user_info($application->user_id)->name }} {{ get_phrase('Application details') }} {{ get_phrase('download') }} @if ($application->status == 0)
{{ get_phrase('Pending') }}
@elseif($application->status == 1)
{{ get_phrase('Approved') }}
@endif