@extends('layouts.base') @section('stylesheets') @endsection @section('content')

Manage Patients

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