@extends('layouts.app') @section('title', 'Positions') @push('styles') @endpush @section('content')
Position List
@if(request('search') || request('department_id')) @endif
Add Position
@forelse($positions as $index => $position) @empty @endforelse
# Position Name Department Description Created At Actions
{{ $positions->firstItem() + $index }} {{ $position->position_name }} {{ $position->department->department_name }} {{ Str::limit($position->description, 40) ?? '-' }} {{ $position->created_at->format('d M Y') }}
@csrf @method('DELETE')

No positions found

@if($positions->hasPages()) @endif
@endsection @push('scripts') @endpush