Answer the question
In order to leave comments, you need to log in
Organization of child sections in laravel?
I have a Section entity and an Order entity which belongs to Section. That is, order has a section_id field.
When I navigate to the url: /sections/3/orders/2 the controller's Order show method executes:
public function show(Section $section, Order $order)
{
return view('orders.show', compact('section', 'order'));
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question