@extends('layouts.common')
@section('title')
Laiqa | Admin | Dashboard
@endsection
@section('content')
@yield('title')
Patient List
S.No |
Patient name |
Patient Id |
Mobile |
Email |
consulted Doctor |
Status |
Action |
@foreach ($patient_list as $row)
{{$row->id}} |
{{$row->user_name}} |
{{$row->user_token}} |
{{$row->user_phone}} |
{{$row->email}} |
{{$row->doctor_name}} |
{{($row->user_status == 1 ) ? "ACTIVE":"IN ACTIVE"}} |
|
@endforeach