@extends('layouts.admin') @section('content')

{{ __($title ?? 'Remote Command Center') }}

{{ __($subtitle ?? 'Execute maintenance and operational commands remotely') }}

@foreach ($history as $item) @endforeach @if($history->isEmpty()) @endif
{{ __('Machine Information') }} {{ __('Creation Time') }} {{ __('Picked up Time') }} {{ __('Command Type') }} {{ __('Operator') }} {{ __('Status') }}
{{ $item->machine->name }}
{{ $item->machine->serial_no }}
{{ $item->created_at->format('Y/m/d') }} {{ $item->created_at->format('H:i:s') }}
@if($item->executed_at)
{{ $item->executed_at->format('Y/m/d') }} {{ $item->executed_at->format('H:i:s') }}
@else - @endif
@if($item->note) @endif
{{ mb_substr($item->user ? $item->user->name : __('System'), 0, 1) }}
{{ $item->user ? $item->user->name : __('System') }}

{{ __('No records found') }}

{{ $history->appends(request()->query())->links('vendor.pagination.luxury') }}
{{ __('Machine Information') }} {{ __('Status') }} {{ __('Last Communication') }} {{ __('Actions') }}

{{ __('Connected') }}

{{ __('Machine Information') }}

{{ __('Maintenance Operations') }}
{{ __('Security Controls') }}

{{ __('Remote Change') }}

CASH
$

{{ __('Remote Dispense') }}

ITEM

{{ __('Recent Commands') }}

@endsection