@extends('layouts.base')
@section('stylesheets')
@endsection
@section('content')
@include('inc.components.messages')
@if(Auth::user()->user_type == 2)
@endif
| Code |
Name |
Phone Number |
Email |
ID |
Action |
@foreach($patients as $patient)
| {{ $patient->code }} |
{{ $patient->first_name }} {{ $patient->last_name }} |
{{ $patient->phone_number }} |
{{ $patient->email }} |
{{ $patient->identification_number }} |
View
|
@endforeach
@include('medicals::inc.components.modals.patients.add_patient_modal')
@endsection
@section('scripts')
@endsection
@section('page_scripts')
@endsection