@extends('layouts.admin-flowdash') @section('title', 'Job Positions') @section('page-title', 'Job Positions') @section('breadcrumb')
| Position | Department | Location | Status | Created | Actions |
|---|---|---|---|---|---|
|
{{ $position->title ?? 'Job Title' }}
{{ Str::limit($position->description ?? 'Job description...', 50) }}
|
{{ $position->department ?? 'Engineering' }} | {{ $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 foundCreate your first job position to get started. |
|||||