Join Our Team

Explore opportunities at {{ $company }} and take the next step in your career.

{{ $postings->count() }}
Open Position{{ $postings->count() != 1 ? 's' : '' }}
{{ $departments->count() }}
Department{{ $departments->count() != 1 ? 's' : '' }}
@if(request()->hasAny(['search','department_id','type'])) @endif
@if($postings->isEmpty())

No openings right now

We don't have any open positions matching your search at the moment.
Check back soon — we post new openings regularly.

@if(request()->hasAny(['search','department_id','type'])) Clear filters @endif
@else
@foreach($postings as $posting)
@if($posting->department) {{ $posting->department->name }} @endif @if($posting->application_deadline) @php $daysLeft = now()->diffInDays($posting->application_deadline, false); @endphp @if($daysLeft <= 7) {{ $daysLeft <= 0 ? 'Closing today' : "Closes in {$daysLeft}d" }} @endif @endif
{{ $posting->title }}
{{ strip_tags($posting->description) }}
{{ ucfirst(str_replace('_',' ', $posting->employment_type)) }} @if($posting->location) {{ $posting->location }} @endif @if($posting->salary_min || $posting->salary_max) @if($posting->salary_min && $posting->salary_max) {{ number_format($posting->salary_min,0) }} – {{ number_format($posting->salary_max,0) }} @elseif($posting->salary_min) From {{ number_format($posting->salary_min,0) }} @else Up to {{ number_format($posting->salary_max,0) }} @endif @endif @if($posting->application_deadline) Deadline: {{ $posting->application_deadline->format('d M Y') }} @endif
View & Apply
@endforeach
@endif