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

Open positions

Explore roles and apply with your CV in a few minutes.

@forelse($jobs as $job)
{{ $job->title }}

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

{{ \Illuminate\Support\Str::limit(strip_tags($job->description), 140) }}

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