@extends('layouts.panel') @section('title', 'Registro Diario') @section('content')
Control operativo de pedidos en proceso
| Código | Cliente | Línea | Estado actual | Acción |
|---|---|---|---|---|
| {{ $order->order_code }} | {{ $order->client->business_name ?: $order->client->contact_name }} | {{ $order->serviceLineLabel() }} | @php $statusColors = [ 'received' => 'secondary', 'washing' => 'info', 'drying' => 'info', 'folding' => 'warning', 'bagging' => 'warning', 'ready' => 'success', 'dispatched' => 'primary', ]; $color = $statusColors[$order->status] ?? 'secondary'; @endphp {{ $order->statusLabel() }} | |
| No hay pedidos activos. | ||||
| Pedido | Cliente | Kilos lavados | Operador | Estado registrado | Observaciones | Acción |
|---|---|---|---|---|---|---|
| {{ $record->order->order_code }} | {{ $record->order->client->business_name ?: $record->order->client->contact_name }} | {{ $record->weight_washed_kg ? number_format($record->weight_washed_kg, 2) . ' kg' : '—' }} | {{ $record->operator?->name ?? '—' }} | {{ $record->statusLabel() }} | {{ $record->observations ?? '—' }} | |
| Sin registros para esta fecha. | ||||||