@extends('hr_main') @section('title', '| Device List') @section('content') @include('successMsg')

DEVICE LIST

@if($attDeviceInfos) @php $no = 0; @endphp @foreach($attDeviceInfos as $attDeviceInfo) @php $existLog = ($userLogInfos) ? $userLogInfos->where('device_info_id_fk', $attDeviceInfo->id)->first() : null; $totalUsers = ($existLog) ? $existLog->total_users : 0; @endphp @endforeach @else @endif
SL# Device Serial Number Device Model Total Users Connected Time Last Updated Time Action
{{ ++$no }} {{ $attDeviceInfo->device_serial_number }} {{ $attDeviceInfo->device_model }} {{ $totalUsers }} {{ $attDeviceInfo->connected_time }} {{ $attDeviceInfo->last_updated_time }}
No Result Found
@endsection