{{-- @php
ini_set('memory_limit', '-1');
@endphp --}}
@extends('subadmin.layouts.master')
@section('content')
Patients
Current Page: {{ $users->currentPage() }}
Showing {{ $users->firstItem() }} to {{ $users->lastItem() }} of
{{ $users->total() }} entries
@forelse ($users as $user)
Name
Site
Occupied By (Sales Person)
QR Code
Date Created
Action
@empty
{{ $user->user->fname . ' ' . $user->user->lname }}
{{ $user->organization->name }}
{{ $user->organization->salesman? $user->organization->salesman->salesman->fname . ' ' . $user->organization->salesman->salesman->lname: 'Not Occupied Yet' }}
{!! QrCode::size(50)->generate($user->user->fname . ' ' . $user->user->lname) !!}
{{ $user->created_at->format('m-d-Y') }}
@if ($user->status == 1)
@endif
{{-- --}}
@endforelse
No Data Available
No Data Available
No Data Available
No Data Available
No Data Available
No Data Available
No Data Available
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}