@extends('adminlte::page') @section('title', config('app.name') . ' - Detalle de Merma') @section('plugins.Datatables', true) @section('content_header')

Detalle de Merma

@stop @section('content')

Información

Fecha de Registro {{ $merma->created_at->format('d/m/Y') }} {{ $merma->created_at->format('H:i:s') }}
Peso Total {{ number_format($merma->total_peso, 2) }} kg

Detalle de la Merma

@foreach($merma->detalles as $index => $detalle) @endforeach
# Tipo Ingreso Producto Presentación Tipo de Producto Peso Merma (kg)
{{ $index + 1 }} @php $tipoIngreso = [1 => 'CAMION', 2 => 'POR STOCK', 4 => 'BENEFICIADO'][$detalle->tipo_ingreso] ?? 'N/D'; @endphp {{ $tipoIngreso }} {{ $detalle->presentacion }} {{ $detalle->tipo }} {{ number_format($detalle->peso, 2) }}
TOTAL PESO MERMA: {{ number_format($merma->total_peso, 2) }} kg
@stop @section('css') @stop @section('js') @stop