@extends('breadcrumbs.app') @section('content') @if(!$positions->isEmpty()) @foreach($positions as $position) @if (is_null($position->vacancyFullDescription))

{{__("There don't seem to be any details.")}}

{{__('This vacancy does not have any details yet.')}}

@else {!! $position->vacancyFullDescription !!}

{{__('Last updated :lastUpdatedRelativeTimeValue', ['lastUpdatedRelativeTimeValue' => $position->updated_at->diffForHumans()])}}

@endif
@endforeach @endif
@if ($demoActive)

{{ __('Attention') }}

{{ __('Demo mode is active on this instance. The database is refreshed daily and some features are disabled for security reasons.') }}

{{ __("If you're seeing this message in error, please contact your system administrator.") }}

@endif

{{ __('Check out our available roles') }}

{!! __("

Are you looking to work with the :appName team? We're actively recruiting! Check out one of our open roles. A good team is an important aaspect of a successful community.

", ['appName' => config('app.name')]) !!}
@if (!$positions->isEmpty()) @foreach($positions as $position)

{{$position->vacancyName}}

{{trans_choice('{1} There is :count open position!|[2,*] There are :count open positions!', $position->vacancyCount)}}

{{$position->vacancyDescription}}

@endforeach @else

{{__('There are no open roles')}}

{{__('Hello There!')}}

{{__('We are currently not recruiting any new staff members at the moment. If you\'d like to apply, check out our community\'s announcement channel for news when a new role opens.')}}

@endif
{!! __("

The :appName management team usually responds to applications within :timeTakenAppl hours.", ['appName' => config('app.name'), 'timeTakenAppl' => '48']) !!}

{!! __('If you have any questions about your web portal account, application or literally anything else, please visit our support site, or send us an email.', ['supportURL' => config('app.support_url'), 'supportEmail' => config('app.support_email')]) !!}

@stop