{{-- filepath: resources/views/faculty/index.blade.php --}} Faculty Management - Admin

Faculty Management

← Back to Dashboard
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

All Faculty

+ Add New Faculty
@forelse($faculties as $faculty) @empty @endforelse
ID Name Position Sort Order Active Updated At Actions
{{ $faculty->id }} {{ $faculty->name }} {{ $faculty->position ?? '-' }} {{ $faculty->sort_order }} {{ (int)$faculty->active === 1 ? 'Active' : 'Inactive' }} {{ optional($faculty->updated_at)->format('M d, Y') }} Edit
@csrf @method('DELETE')
No faculty records found.
@if(method_exists($faculties, 'links')) @endif