@extends('layouts.app') @section('title', 'Device Details') @section('content')
{{ $device->device_model }} • Android {{ $device->android_version }}
| Command | Status | Created | Executed |
|---|---|---|---|
| {{ str_replace('_', ' ', ucfirst($command->command_type)) }} | @if($command->status === 'executed') Executed @elseif($command->status === 'failed') Failed @elseif($command->status === 'sent') Sent @else Pending @endif | {{ $command->created_at->format('M d, Y H:i') }} | {{ $command->executed_at ? $command->executed_at->format('M d, Y H:i') : '-' }} |
| No commands issued yet | |||
{{ $log->content }}
No logs available
@endforelse