@extends('layouts.admin') @section('content')
{{ __('Real-time status monitoring') }}
{{ $activeMachines }}
{{ __('Total Connected') }}
{{ __('Monthly cumulative revenue overview') }}
{{ __("Today's Transactions") }}
${{ number_format($totalRevenue / 30, 0) }}
{{ __('vs Yesterday') }}
{{ __("Yesterday") }}
${{ number_format($totalRevenue / 25, 0) }}
{{ __("Day Before") }}
${{ number_format($totalRevenue / 40, 0) }}
{{ __('Real-time monitoring across all machines') }}
| {{ __('Machine Info') }} | {{ __('Running Status') }} | {{ __('Today Cumulative Sales') }} | {{ __('Current Stock') }} | {{ __('Last Communication') }} | {{ __('Alert Summary') }} |
|---|---|---|---|---|---|
|
{{ $activity->machine->name ?? __('Machine Info') }}
(SN: {{ $activity->machine->serial_no ?? 'N/A' }})
|
{{ $activity->machine->status === 'online' ? __('Online') : __('Offline') }} | $ 0 |
|
{{ $activity->created_at->format('Y/m/d H:i') }} | {{ __('No alert summary') }} |
| {{ __('No data available') }} | |||||
{{ __('Showing :from to :to of :total items', ['from' => 1, 'to' => count($latestActivities), 'total' => count($latestActivities)]) }}