@extends('layouts.app') @section('content')

Detalle del Pedido #{{ $pedido->id }}

Estado: {{ ucfirst($pedido->status) }}
@foreach($pedido->items as $item) @endforeach
Producto Cantidad Precio Unitario Subtotal
{{ $item->product->name }} {{ $item->quantity }} ${{ number_format($item->unit_price, 2) }} ${{ number_format($item->subtotal, 2) }}
Total: ${{ number_format($pedido->total, 2) }}
Volver a perfil
@endsection