@extends('layout.admin_layout')
@section('title', 'Medicine Change Requests')
@section('body')
@section('header', 'Medicine Change Requests')
@section('badge')
Manage Medicine Change Requests
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Date |
Consultation Type |
Doctor |
Patient |
Action |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
{{date('m-d-Y',strtotime($value->date))}} |
{{$value->consultation_type}} |
{{user_name($value->doctor_id)}} |
{{user_name($value->patient_id)}} |
|
@endforeach
@endsection
@push('scripts')
@endpush