@extends('layouts.app') @section('title','Exportación: '.$exportacion->numero) @section('page-title','Detalle de Exportación') @section('content') @if(session('success'))
{{ $exportacion->numero_bl ?? '—' }}{{ $exportacion->numero_contenedor ?? '—' }}| Descripción | Tipo Pulpa | Fruta | Cantidad | Unidad | Precio | Subtotal |
|---|---|---|---|---|---|---|
| {{ $item->descripcion }} | {{ $item->tipo_pulpa ? str_replace('_',' ',ucfirst($item->tipo_pulpa)) : '—' }} | {{ $item->fruta ?? '—' }} | {{ number_format($item->cantidad,3) }} | {{ $item->unidad }} | {{ $exportacion->pedido->moneda }} {{ number_format($item->precio_unitario,4) }} | {{ $exportacion->pedido->moneda }} {{ number_format($item->subtotal,2) }} |