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

Application Management / Pending Interviews

@stop @section('content')

{{$applications->count()}}

Pending Interviews

{{$finishedCount}}

Finished Interviews

Schedule Interviews

@if (!$applications->isEmpty()) @foreach($applications as $application) @endforeach
# Interviewee Status Actions
{{$application->id}} {{$application->user->name}} {{($application->applicationStatus == 'STAGE_INTERVIEW') ? 'Pending Interview' : 'Unknown Status'}}
@else
No Applications Pending Interview

There are no applications that have been moved up to the Interview stage. Please check the outstanding queue.

@endif

My Upcoming Interviews

@if (!$upcomingApplications->isEmpty()) @foreach($upcomingApplications as $upcomingApp) @if (is_null($upcomingApp->appointment)) @else @endif @endforeach
# Interviewee Status Time & Date Location Actions
{{$upcomingApp->id}} {{$upcomingApp->user->name}}Pending Schedule None yet Pending Schedule {{ucfirst(strtolower($upcomingApp->appointment->appointmentStatus))}} {{$upcomingApp->appointment->appointmentDate}} {{ucfirst(strtolower($upcomingApp->appointment->appointmentLocation))}}
@else

There are no upcoming interviews

Please check other queues down in the application process. Applicants here may have already been interviewed.
@endif
@stop @section('footer') @include('breadcrumbs.dashboard.footer') @stop