@extends('Admin/layout/master') @section('title', 'Physician List') @section('content') {{-- Modal Start --}} {{-- Modal End --}}
Physician List
@if (count($Physicians) > 0) @foreach ($Physicians as $index => $Physician) @endforeach @else @endif
Number First Name LAst Name Gender Physician Type Telephone Number Action
{{ $Physician->number }} {{ $Physician->fisrt_name }} {{ $Physician->last_name }} {{ $Physician->gender }} {{ $Physician->physician_type?? 'Null' }} {{ $Physician->telephone_number }}
No Record Found
@endsection @section('scripts') @endsection