@extends('oxygen::layouts.master-dashboard')
@section('breadcrumbs')
{{ lotus()->breadcrumbs([
['Dashboard', route('dashboard')],
[$pageTitle, null, true]
]) }}
@stop
@section('pageMainActions')
@include('oxygen::dashboard.partials.searchField')
@stop
@section('content')
@if (has_feature('notifications.send-device-push-notifications'))
@endif
@include('oxygen::dashboard.partials.table-allItems', [
'tableHeader' => $tableHeader
])
@foreach ($allItems as $item)
{{ $item->device_id }}
{{ $item->device_type }}
{{ $item->device_push_token }}
{{ $item->latest_ip_address }}
@if ($item->user)
{{ $item->user->full_name }}
@endif
@if (has_feature('notifications.send-device-push-notifications'))
Send Notification
@endif
@endforeach
@stop