@extends('users.admin.layouts.master') @section('styles') @endsection @section('content')

Patients List

#Page-ID
@if(session()->has('success')) @endif

Patients List

@foreach($patients as $patient) @endforeach
Picture Name National ID Email Mobile Num Departments Actions Delete
@if(strpos($patient->picture,'users_pictures')!==false) @else @endif {{$patient->first_name}} {{$patient->last_name}} {{$patient->national_id}} {{$patient->email}} {{$patient->mobile}} @foreach($patient->departments as $de) {{$de->name}} @endforeach
@method('DELETE') @csrf
@endsection @section('scripts') @endsection