@extends('layouts.admin-simple') @section('title', 'Job Positions') @section('page-title', 'Job Positions') @section('breadcrumb') @endsection @section('page-actions')
@endsection @section('content')

Job Positions

Manage available job positions
@forelse($jobPositions ?? [] as $position) @empty @endforelse
Position Type Location Status Created Actions
{{ $position->title ?? 'Job Title' }}
{{ Str::limit($position->description ?? 'Job description...', 50) }}
{{ ucfirst(str_replace('-', ' ', $position->type ?? 'full-time')) }} {{ $position->location ?? 'Remote' }} @if($position->is_active ?? true) Active @else Inactive @endif {{ $position->created_at ? $position->created_at->format('M d, Y') : 'Jan 1, 2024' }}
work_outline
No job positions found

Create your first job position to get started.

@endsection @section('modals') @foreach($jobPositions ?? [] as $position) @endforeach @foreach($jobPositions ?? [] as $position) @endforeach @endsection