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

Administration / Open Positions

@stop @section('js') @if (session()->has('success')) @elseif(session()->has('error')) @endif @if($errors->any()) @foreach ($errors->all() as $error) @endforeach @endif @stop @section('content')

Open Vacancies

@if(!$vacancies->isEmpty()) @foreach($vacancies as $vacancy) @if($vacancy->vacancyStatus == 'OPEN') @else @endif @endforeach
# Vacancy Name Vacancy Description Discord Role ID Perm. Group Name Open Slots Status Created On Actions
{{$vacancy->id}} {{$vacancy->vacancyName}} {{$vacancy->vacancyDescription}} {{$vacancy->discordRoleID}} {{$vacancy->permissionGroupName}} {{$vacancy->vacancyCount}}OPENCLOSED{{$vacancy->created_at}} @if ($vacancy->vacancyStatus == 'OPEN')
@csrf @method('PATCH')
@else
@csrf @method('PATCH')
@endif
@else

Nothing to see here! Open some vacancies first. This will get applicants pouring in! (hopefully)

@endif
@stop