@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Careers') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@if(count($careers) > 0)
@csrf
{{-- Recaptcha --}}
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!}
@foreach ($careers as $key => $career)
{{ langConverter($career->title_en ,$career->title_fr ) }}
{{ $career->date }}

{{ __('Job Description :')}}
{!!langConverter($career->desc_en ,$career->desc_fr ) !!}
@endforeach {{-- Pagination --}} {{ $careers->links('vendor.pagination.careers') }}
@else

{{ __('There are no careers available now')}}

@endif
@endsection