@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Open vacancies')) @section('content_header') @if (Auth::user()->hasAnyRole('admin', 'hiringManager'))
{{__('Name')}} | {{__('Description')}} | {{__('Free slots')}} | {{__('Status')}} | {{__('Created at')}} | {{__('Actions')}} | |
---|---|---|---|---|---|---|
{{$vacancy->vacancyName}} | {{substr($vacancy->vacancyDescription, 0, 20)}}... | {{$vacancy->vacancyCount}} | @if($vacancy->vacancyStatus == 'OPEN'){{__('Open')}} | @else{{__('Closed')}} | @endif{{$vacancy->created_at}} | @if ($vacancy->vacancyStatus == 'OPEN') @else @endif |
{{ __('Note: If you delete a vacancy, all its applications are also deleted') }}
@else{{__('Nothing to see here! Open some vacancies first. This will get applicants pouring in! (hopefully)')}}