@extends('layouts.cliente.app') @section('title','Detalhes da Compra') @section('content')
| Produto | Preço | Qtd | Subtotal |
|---|---|---|---|
|
{{ $product->name ?? 'Produto removido' }}
|
{{ number_format($item->price,2,',','.') }} Kz | {{ $item->quantity }} | {{ number_format($item->subtotal,2,',','.') }} Kz |
| Nenhum item encontrado neste pedido. | |||