@extends('adminlte::page') @section('title', 'Raspberry Network Team Management') @section('content_header')

RaspberryNet Teams / Dashboard (At a glance)

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

Welcome back, {{ Auth::user()->name }}!

Your current application eligibility status: {{($isEligibleForApplication) ? 'Eligibile' : 'Ineligible' }}

@if (!Auth::user()->isStaffMember())

{{ $openApplications ?? 0 }}

Ongoing Apps

Open

{{ $deniedApplications ?? 0 }}

Denied Apps

Open
@else

{{ $totalUserCount }}

Total Users + Staff

@if (Auth::user()->hasRole('admin')) Open @endif

{{ $totalDenied }}

Denied applications

{{ $totalNewApplications }}

New applications

Open

{{ $totalPeerReview }}

Vote backlog

Open
@endif @if ($isEligibleForApplication && !Auth::user()->isStaffMember())

Available ranks


@endif
@if (!$vacancies->isEmpty() && $isEligibleForApplication && !Auth::user()->isStaffMember()) @foreach($vacancies as $vacancy)

{{ $vacancy->vacancyName }}

{{$vacancy->vacancyDescription}}
@endforeach @endif

  Your upcoming interviews (coming soon)

@stop