@extends('layouts.website.website') @section('content') Add Prescription @csrf Date Patient @foreach (App\User::where('role_id',8)->orderBy('name','ASC')->get() as $item) {{ $item->name }} @endforeach Doctor {{ Auth::user()->name }} History Note Medicine @foreach (App\MadicneList::OrderBy('name','ASC')->get() as $item) {{ $item->name }} @endforeach Medicine Advice Submit @endsection