@extends('layout.main') @section('title', 'Edit Pesanan') @section('content')
@csrf @method('PUT')
Products

Isi 0 jika tidak dipesan

@foreach($products as $product) @php $detail = $order->details->firstWhere('product_id', $product->id); @endphp @endforeach
Produk Jumlah
{{ $product->name }} (Rp {{ number_format($product->price,0,',','.') }})
Back Update Order
@endsection