@extends('layouts.dashboard.superadminapp')
@section('title', 'Machine Report')
@section('styles')
@endsection
@section('content')
UEPL | Machine Report
day,
00
month
0000
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| Machine |
Serial No |
Make/Model |
@php
$idleMachines = $machines->filter(fn($m) => $m->routeProcesses->count() == 0)->take(5);
@endphp
@forelse($idleMachines as $machine)
| {{ $machine->machine_name }} |
{{ $machine->machine_sl_no ?? '-' }} |
{{ $machine->make ?? '-' }} / {{ $machine->model_type ?? '-' }} |
@empty
| All machines are active |
@endforelse
@endsection
@section('scripts')
@endsection