@extends('layouts.app') @section('content')
{{ __('CREAR NUEVO DESPACHO PARA BLENDING') }}
{{ __('VOLVER') }}
{{ __('DATOS DEL BLENDING') }}

{{ __('CÓDIGO:') }} {{ $blending->cod }}

{{ __('TIPO DE MATERIAL:') }} {{ $blending->lista }}

{{ __('NOTAS:') }} {{ $blending->notas }}

@if($blending->ingresos->isEmpty())

{{ __('No hay ingresos asociados a este blending.') }}

@else @foreach($blending->ingresos as $ingreso) @endforeach
{{ __('Fecha de Ingreso') }} {{ __('Cliente') }} {{ __('Lote') }} {{ __('Peso') }}
{{ $ingreso->fecha_ingreso }} {{ $ingreso->nom_iden }} {{ $ingreso->ref_lote }} {{ $ingreso->peso_total }}
@endif
{{ __('TMH TOTAL') }}: {{ $blending->pesoblending }}
{{ __('N° Ticket') }} {{ __('Precinto') }} {{ __('Guia Remision') }} {{ __('Peso Bruto') }} {{ __('Peso Tara') }} {{ __('Peso Neto') }} {{ __('Placa Tracto') }} {{ __('Placa Carreta') }} {{ __('Acción') }}
{{ __('TONELAJE TOTAL DESPACHADO TMH') }}: 0
@csrf
@endsection