@extends('layouts.app') @section('title','Pedido: '.$pedido->numero) @section('page-title','Detalle de Pedido') @section('content') @if(session('success'))
| # | Descripción | Tipo Pulpa | Fruta | Cantidad | Unidad | P. Unit. | Subtotal |
|---|---|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $item->descripcion }} | {{ $item->tipo_pulpa ? str_replace('_',' ',ucfirst($item->tipo_pulpa)) : '—' }} | {{ $item->fruta ?? '—' }} | {{ number_format($item->cantidad,3) }} | {{ $item->unidad }} | {{ $pedido->moneda }} {{ number_format($item->precio_unitario,4) }} | {{ $pedido->moneda }} {{ number_format($item->subtotal,2) }} |
| Subtotal | {{ $pedido->moneda }} {{ number_format($pedido->subtotal,2) }} | ||||||
| IGV (18%) | {{ $pedido->moneda }} {{ number_format($pedido->igv,2) }} | ||||||
| TOTAL | {{ $pedido->moneda }} {{ number_format($pedido->total,2) }} | ||||||