@extends('layouts.admin') @section('content')
{{ __('Real-time status monitoring') }}
{{ $activeMachines }}
{{ __('Total Connected') }}
{{ __('Monthly Cumulative Revenue') }}: ${{ number_format($monthlyRevenue, 0) }}
{{ __("Today Cumulative Sales") }}
${{ number_format($todayRevenue, 0) }}
{{ __('vs Yesterday') }}
{{ __("Yesterday") }}
${{ number_format($yesterdayRevenue, 0) }}
{{ __("Day Before") }}
${{ number_format($dayBeforeRevenue, 0) }}
{{ __('Real-time monitoring across all machines') }}
SN: {{ $machine->serial_no ?: '--' }}
{{ __('Today Cumulative Sales') }}
$ {{ number_format($machine->today_sales_sum ?? 0, 0) }}
{{ __('Sub-machine Status') }}
@php $hStatus = $machine->hardware_status; @endphp{{ __('Last Signal') }}
{{ $machine->last_heartbeat_at ? $machine->last_heartbeat_at->format('Y-m-d H:i:s') : '---' }}