第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

供應(yīng)商/商店按類別對(duì)產(chǎn)品進(jìn)行分組 - laravel

供應(yīng)商/商店按類別對(duì)產(chǎn)品進(jìn)行分組 - laravel

PHP
心有法竹 2023-11-03 16:01:08
我正在開發(fā)一個(gè)Laravel with MySQL類似電子商務(wù)的網(wǎng)站,我需要按供應(yīng)商/商店顯示其類別下的所有產(chǎn)品。我嘗試了下面的代碼,但它重復(fù)了每個(gè)產(chǎn)品,如果產(chǎn)品屬于同一類別,則它不會(huì)分組在一個(gè)類別下。Controller:$products = Product::with('category')->where('store_id',$id)->get();View:@foreach($products as $product)    {{ $product->category->name }}    {{ $product->name }}@endforeachDatabase Structure:storeid  |  name---products - store_id is foreign key of store table and category_id is foreign key of categories tableid | store_id  | category_id | name---categoriesid | name我期待的輸出:一類all products under this category第二類all products under this category
查看完整描述

1 回答

?
哈士奇WWW

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超6個(gè)贊

嘗試獲取類別并立即加載具有特定商店 ID 的產(chǎn)品


$categories = Category::with('products'=> function($query) use ($id) {

        $query->where('store_id' , $id);

    }])

    ->whereHas('products', function ($query) use ($id) {

        $query->where('store_id' ,$id);

    })

    ->get();

在視圖中首先循環(huán)您的類別,然后循環(huán)相關(guān)產(chǎn)品


@foreach($categories as $category)

    {{ $category->name }}

    @foreach($category->products as $product)

        {{ $product->name }}

    @endforeach

@endforeach


查看完整回答
反對(duì) 回復(fù) 2023-11-03
  • 1 回答
  • 0 關(guān)注
  • 123 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)