@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Account Management')) @section('content_header')
{{__("Please confirm that you want to suspend this account. You'll need to add a reason and expiration date to confirm this.")}}
{{ __('This feature is disabled') }}
{{__('You are about to terminate a recruited staff member')}}
{{__('Terminating a staff member will remove their privileges on the application management site and connected integrations configured for the vacancy they applied for.')}}
{{__('THIS PROCESS IS IRREVERSIBLE AND IMMEDIATE')}}
{{ __('This feature is disabled') }}
{{__('WARNING: This is a potentially destructive action!')}}
{{__("Deleting a user's account is an irreversible process. Historic and current applications, votes, and profile content, as well as any personally identifiable information will be immediately erased.")}}
{{ __('This feature is disabled') }}
# | {{__('Status')}} | {{ __('Vacancy') }} | {{__('Date')}} | {{__('Actions')}} |
---|---|---|---|---|
{{ $application->id }} | @switch($application->applicationStatus) @case('STAGE_SUBMITTED') {{__('Outstanding (Submitted)')}} @break @case('STAGE_PEERAPPROVAL') {{__('Peer Review')}} @break @case('STAGE_INTERVIEW') {{__('Interview')}} @break @case('STAGE_INTERVIEW_SCHEDULED') {{__('Interview Scheduled')}} @break @case('APPROVED') {{__('Approved')}} @break @case('DENIED') {{__('Denied')}} @break; @default {{__('Denied')}} @endswitch | {{ $application->response->vacancy->vacancyName }} | {{ $application->created_at }} ({{ $application->created_at->diffForHumans() }}) |
|