@extends('layouts.website.website') @section('content')
Doctors
@foreach (App\User::where('role_id',4)->orderBy('name','ASC')->get() as $item) @if ($item->department) @else @endif @endforeach
Doctor Id Name Email Phone Department Profile Options
{{ $item->id }} {{ $item->name }} {{ $item->email }} {{ $item->phone }}{{ $item->department->name }}{{ $item->doctor_profile }} Info Edit Appointments {{-- Holiday --}} {{-- Time Schedule --}} Delete
@endsection