@extends('layouts.user') @section('title', 'Checkout') @section('content')
| Pizza | Jumlah | Harga (Satuan) | Total Harga |
|---|---|---|---|
| {{ $item->pizza->nama }} | {{ $item->jumlah }} | Rp {{ number_format($item->pizza->harga,0,',','.') }} | Rp {{ number_format($item->jumlah * $item->pizza->harga,0,',','.') }} |