@extends('admin/layout') @section('page_title','Doctors') @section('miscellaneous_select','active') @section('doctor_select','active') @section('content')

Doctor Manage

@if (session()->has('add_msg'))
× {{session()->get('add_msg')}}
@endif @if (session()->has('update_msg'))
× {{session()->get('update_msg')}}
@endif @if (session()->has('delete_msg'))
× {{session()->get('delete_msg')}}
@endif
@php $sl = 1; @endphp @foreach ($doctors as $item) @endforeach
# Doctor Name Doctor Qualification Department Medical Chamber Contact No Action
{{$sl++}} {{$item->doctor_name ?? '' }} {{ $item->doctor_qualification ?? '' }} {{ $item->department ?? '' }} {{ $item->medical ?? '' }} {{ $item->chamber ?? '' }} {{ $item->contact_no ?? '' }} Edit Delete
@endsection @section('scripts') @endsection