@extends('layouts.public') @section('title', __('Careers')) @section('meta_description', __('Current job openings, internships and volunteering opportunities at ABACO INFRA.')) @section('content')

{{ __('Employment type') }}

{{ __('All openings') }} @foreach ($types as $key => $label) {{ $label }} @endforeach
@if ($activeType) @endif
@if ($jobs->isEmpty()) {{ __('Browse notices') }} @else
    @foreach ($jobs as $job)
  • {{ $job->typeLabel() }} @if ($job->department) {{ $job->department }} @endif @if ($job->sector) {{ $job->sector->name }} @endif

    {{ $job->title }}

    @if ($job->short_description)

    {{ $job->short_description }}

    @endif

    @if ($job->location) {{ $job->location }} @endif @if ($job->vacancies > 1) {{ trans_choice(':count position|:count positions', $job->vacancies, ['count' => $job->vacancies]) }} @endif @if ($job->deadline) {{ __('Apply by :date', ['date' => $job->deadline->format('d M Y')]) }} @endif

    {{ __('View & apply') }}
  • @endforeach
@if ($jobs->hasPages())
{{ $jobs->links() }}
@endif @endif
@endsection