@extends('layouts.careers') @section('title', __('Open positions')) @section('content')

{{ __('Join our team') }}

{{ __('Explore open roles and apply with your CV in a few minutes.') }}

@if(request('q'))

{{ __('Showing results for') }} “{{ request('q') }}”

@endif
@forelse($jobs as $job)

{{ $job->title }}

@if($job->warehouse || $job->department || $job->designation)
@if($job->warehouse) {{ $job->warehouse->name }} @endif @if($job->department) {{ $job->department->name }} @endif @if($job->designation) {{ $job->designation->name }} @endif
@endif

@if($job->closing_date) {{ __('Closes') }} {{ $job->closing_date->format('M j, Y') }} @else {{ __('Open until filled') }} @endif

@php($excerpt = $job->descriptionExcerpt(160))

{{ $excerpt !== '' ? $excerpt : __('View full job details on the next page.') }}

{{ __('View & apply') }}
@empty
{{ __('No open positions right now. Please check back later.') }}
@endforelse
{{ $jobs->links() }}
@endsection