| {{ __('Machine Information') }} | {{ __('Status') }} | {{ __('Alerts') }} | {{ __('Last Sync') }} | {{ __('Actions') }} |
|---|---|---|---|---|
|
@if($machine->image_urls && isset($machine->image_urls[0]))
{{ $machine->name }}
{{ $machine->serial_no }}
|
@if($machine->status === 'online' || !$machine->status)
{{ __('Offline') }}
@else
|
@if($machine->low_stock_count > 0)
{{ $machine->low_stock_count }} {{ __('Low') }}
@endif
@if($machine->expiring_soon_count > 0)
{{ $machine->expiring_soon_count }} {{ __('Expiring') }}
@endif
@if(!$machine->low_stock_count && !$machine->expiring_soon_count)
{{ __('All Stable') }}
@endif
|
{{ $machine->last_heartbeat_at ? \Illuminate\Support\Carbon::parse($machine->last_heartbeat_at)->format('Y-m-d') : '--' }}
|
|
|
{{ __('No machines found') }} |
||||