@extends('adminlte::page') @section('title', 'Raspberry Network | Profile') @section('content_header')

Application Management / All Applications

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

Really delete this?

This action is IRREVERSBILE.

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 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 {{ $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() && isset($applications->links)) @endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop