@extends('layouts.app') @section('title', 'Specialization') @section('content')
@csrf
@error('name') {{ $message }} @enderror
Specialization List
@forelse($specializations as $key => $row) @empty @endforelse
Sr. No. Specialization Status Action
{{ $specializations->firstItem() + $key }} {{ $row->specialization }} {{ ucfirst($row->status ? 'Active' : 'Inactive') }}
No specializations found.
{{ $specializations->links() }}
{{-- Edit Modal --}}
@endsection @section('scripts') @endsection