@extends('layouts.website.website') @section('content')
Patient Database
@foreach (App\User::where('role_id',8)->orderBy('name','ASC')->get() as $item) @if ($item->patients_doctor) @else @endif @endforeach
Patient ID Name Doctor Phone Due Balance Options
{{ $item->id }} {{ $item->name }} {{ $item->patients_doctor->name }} {{ $item->phone }} Edit Info History
@endsection