Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$products = Product::query() ->with('ingredients') ->with('category') ->with('options') ->get();
$categrories = Category::query() ->with(['products', 'products.ingredients', 'products.options']) ->get(); @foreach($categrories as $categrory) {{$category->name}} @foreach($categrory->products as $product) {{$product->name}} @endforeach @endforeach