@extends('layouts.dashboard.adminapp') @section('title', 'Machine Report') @section('styles') @endsection @section('content')
| Machine ID | Machine Name | Process Count | Status |
|---|---|---|---|
| {{ $machine->machine_id }} | {{ $machine->machine_name }} | {{ $machine->routeProcesses->count() }} | {{ ucfirst($machine->status ?? 'Active') }} |
| No machines found | |||
| Date | Machine | Log Type | Description | Reported By |
|---|---|---|---|---|
| {{ $log->created_at ? $log->created_at->format('d-m-Y H:i') : '-' }} | {{ $log->machine->machine_name ?? '-' }} | {{ ucfirst($log->log_type ?? 'Info') }} | {{ Str::limit($log->description, 50) }} | {{ $log->reporter->name ?? '-' }} |
| No logs found | ||||