@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Applications')) @section('content_header')

{{__('My account')}} / {{__('Applications')}}

@stop @section('js') @stop @section('content')
{{__('Application Process')}}

{{__('Please allow up to three days for your application to be processed. Your application will be reviewed by every team member, and will move up in stages.')}}

{{__("If an interview is scheduled, you'll need to open your application here and confirm the time, date, and location assigned for you.")}}

{{__('My Ongoing Applications')}}

@if (!$applications->isEmpty()) @foreach ($applications as $application) @endforeach
# {{__('Applicant')}} {{__('Application Date')}} {{__('Last updated')}} {{__('Status')}} {{__('Actions')}}
{{$application->id}} {{Auth::user()->name}} {{$application->created_at}} {{$application->updated_at}} @switch($application->applicationStatus) @case('STAGE_SUBMITTED') {{__('Submitted')}} @break @case('STAGE_PEERAPPROVAL') {{__('Peer Approval')}} @break @case('STAGE_INTERVIEW') {{__('Interview')}} @break @case('STAGE_INTERVIEW_SCHEDULED') {{__('Interview Scheduled')}} @break @case('APPROVED') {{__('Approved')}} @break @case('DENIED') {{__('Denied')}} @break @default {{__('Unknown')}} @endswitch
@else

{{__('Nothing to show')}}

{{__("You currently have no applications to display. If you're eligible, you may apply once every month.")}}

@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop