@php $title = 'Device Management'; @endphp @section('title') {{$title}} @endsection @extends('layout') @section('main-content')

{{$title}}

@foreach($devices as $key => $device) @endforeach
Sl.No Name Brand Model Sdk Version Device Type Last Location Last Updated On Action
{{$key + 1}} {{$device->user->first_name}} {{$device->user->last_name}} {{$device->brand}} {{$device->model}} {{$device->sdk_version}} {{$device->device_type}} {{$device->updated_at}}
@csrf
@endsection @section('scripts') @endsection