muhammedemindurmu Kabaca şöyle:
class OrderController
{
public function index()
{
return Inertia::render('Orders', [
'orders' => Order::with('products')
->simplePaginate(),
]);
}
}
<div v-for="order in orders" :key="order.id">
<div v-for="product in order.products" :key="product.id">
{{ order.id }} {{ product.name }}
</div>
</div>