@extends('adminlte::page') @section('title', config('app.name') . ' - Detalle de Merma') @section('plugins.Datatables', true) @section('content_header')
| # | 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 | |||