@extends('layouts.app') @section('content') @php $website = \App\Models\Website::first(); $paypalKey = \App\Models\PaypalKey::first(); $urlInicio = $website ? url("/sitios/{$website->domain}/home") : url('/'); @endphp
| Producto | Cantidad | Precio | Subtotal |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | ${{ number_format($item->product->price, 2) }} | ${{ number_format($item->product->price * $item->quantity, 2) }} |