@extends('layouts.admin') @section('title', 'Duty Positions') @section('page_title', 'Duty Positions') @section('content')

Duty Positions

Manage duty positions (e.g., Main Gate, Patrol, Lobby) for employee assignments.

Add Position
@if(session('success'))
{{ session('success') }}
@endif
@if(request('search')) @endif
@forelse($positions as $position) @empty @endforelse
Position Name @if(request('sort') === 'name_asc') @elseif(request('sort') === 'name_desc') @else @endif Status Created At Actions
{{ $position->name }} {{ $position->created_at->format('M d, Y') }}
No positions found. Click "Add Position" to create one.
@if($positions->hasPages())
{{ $positions->links() }}
@endif
@endsection