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

Isi 0 jika tidak dipesan

@foreach($products as $product) @php $detail = $resellerOrder->details->firstWhere('product_id', $product->id) ?? null; @endphp @endforeach
Produk Jumlah
{{ $product->name }} (Rp {{ number_format($product->reseller_price ?? $product->price,0,',','.') }})
Kembali Simpan
@endsection