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

My Account / Applications

@stop @section('js') @if (session()->has('success')) @elseif(session()->has('error')) @endif @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.

Account Standing

Your account is currently {{($isEligibleForApplication) ? 'eligible' : 'not eligible'}} for application.

@if (!$isEligibleForApplication)

As of today, there are {{$eligibilityDaysRemaining}} days remaining until you're permitted to submit another application.

@endif Powered by Carbon

My Ongoing Applications

@if (!$applications->isEmpty()) @foreach ($applications as $application) @endforeach
# Applicant Application Date Last Acted On 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