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

{{__('Application Management')}} / {{__('All Applications')}}

@stop @section('js') @stop @section('content') @foreach($applications as $application)

{{__('Really delete this?')}}

{!! __('This action is :consequence.', ['consequence' => '' . __('IRREVERSIBLE.') .'']) !!}

{{__('Comments, appointments and any votes attached to this application WILL be deleted too. Please make sure this application really needs to be deleted.')}}

@csrf @method('DELETE')
@endforeach
{{ __('Applications illustration') }}

{{__("You're looking at all applications ever received")}}

{{__('Here, you have quick and easy access to all applications ever received by the system.')}}

{{__('All Applications')}}

Placeholder illustration
@if (!$applications->isEmpty()) @foreach($applications as $application) @endforeach
# {{__('Applicant')}} {{__('Status')}} {{__('Date')}} {{__('Actions')}}
{{ $application->id }} {{ $application->user->name }} @switch($application->applicationStatus) @case('STAGE_SUBMITTED') {{__('Outstanding (Submitted)')}} @break @case('STAGE_PEERAPPROVAL') {{__('Peer Review')}} @break @case('STAGE_INTERVIEW') {{__('Interview')}} @break @case('STAGE_INTERVIEW_SCHEDULED') {{__('Interview Scheduled')}} @break @case('APPROVED') {{__('Approved')}} @break @case('DENIED') {{__('Denied')}} @break; @default {{__('Denied')}} @endswitch {{ $application->created_at }}
@else

{{__('There are no applications here')}}

{{__("We couldn't find any applications. Maybe no one has applied yet? Please try again later.")}}

@endif
@if (!$applications->isEmpty()) @endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop