@extends('layouts.app') @section('content')
{{ __('DETALLE DE BLENDING') }}
@if ($blending->updated_at != $blending->created_at) @else @endif
{{ __('Código') }}: {{ $blending->cod }}
{{ __('Preparación') }}: {{ $blending->lista }}
{{ __('Notas') }}: {{ $blending->notas }}
{{ __('Estado') }}: {{ $blending->estado }}
{{ __('Ingresos Asociados') }}
@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
{{ __('Peso Total') }}: {{ $blending->pesoblending }}
@endsection