@extends('layouts.panel') @section('title', 'Ingreso ' . $income->income_code) @section('content')
Cliente

{{ $income->client->business_name ?: $income->client->contact_name }}

Recepción

{{ $income->received_at->format('d-m-Y H:i') }}

Referencia

{{ $income->reference_number ?? '—' }}

Kilos recepcionados

{{ $income->weight_kg ? number_format($income->weight_kg, 2) . ' kg' : '—' }}

Observaciones

{{ $income->observations ?? '—' }}

Estado
@csrf @method('PATCH')
@forelse ($income->orders as $order) @empty @endforelse
Código Línea Kilos Estado Acción
{{ $order->order_code }} {{ $order->serviceLineLabel() }} {{ $order->weight_kg ? number_format($order->weight_kg, 2) . ' kg' : '—' }} {{ $order->statusLabel() }}
@csrf @method('DELETE')
Sin pedidos asociados todavía.
@csrf
Historial
@endsection