@extends('dashboard/layout.app') @section('title', 'BettrAi | Device Management') @section('content')

Device Management Reports

@csrf
Patient Name Kit Number Location Date Device Mac Address Vendor Status
@foreach ($expiring_kits as $item) @php $patient_name = null; @endphp @php $patient_name = EncDecHelper::dec_string($item->patient_lname).", ".EncDecHelper::dec_string($item->patient_fname)."(".$item->patient_id.")"; @endphp @php $date = new DateTime($item->date, new DateTimeZone('UTC')); $date->setTimezone(new DateTimeZone($user_tz)); $date = $date->format('m-d-Y'); $inactive_date = new DateTime($item->date_inactivated, new DateTimeZone('UTC')); $inactive_date->setTimezone(new DateTimeZone($user_tz)); $inactive_date = $inactive_date->format('m-d-Y'); @endphp @endforeach
Patient Kit Number Location Assigned Date InActive Date Expiring In
N/A N/A 0 days
@csrf
Patient Kit Number Location Date Assigned Devices
@endsection