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

Application Management / Outstanding Applications

@stop @section('js') @stop @section('content')

Seeing no applications? Check with an Administrator to make sure that there are available open positions.

Advertising on relevant forums made for this purpose is also a good idea.

Outstanding Applications

@if (!$applications->isEmpty()) @foreach($applications as $application) @endforeach
# Applicant Name Status Application Date Last Updated Actions
{{$application->id}} {{$application->user->name}} {{($application->applicationStatus == 'STAGE_SUBMITTED') ? 'Outstanding' : 'Unknown Status'}} {{$application->created_at}} {{$application->updated_at}}
@else
There are no pending applications

It seems like no one new has applied yet. Checkout the interview and approval queues for applications that might have moved up the ladder by now.

@endif
@stop