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

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

將其他數(shù)據(jù)傳遞給拉拉維爾資源

將其他數(shù)據(jù)傳遞給拉拉維爾資源

PHP
米琪卡哇伊 2022-09-17 17:19:33
我需要將我的自定義數(shù)據(jù)傳遞到相同級(jí)別的資源數(shù)組,但它會(huì)脫離數(shù)組return CategoryProductsResource::collection(Category::whereNull('parent_id')->get())  ->additional([                'data' => [                    'id' => 9999,                    'name' => 'How Offers',                    'image' => 'http://businessdotkom.com/storage/categories/January2020/1o6nDi1kjVuwje5FiFXv.png',                    'products' => ProductIndexResource::collection(Product::whereNotNull('sale_price')->get()),                ]            ]);輸出
查看完整描述

2 回答

?
不負(fù)相思意

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

由于“附加”用于頂級(jí)數(shù)據(jù),因此請使用 instaed。concat


return CategoryProductsResource::collection(Category::whereNull('parent_id')->get())

  ->concat([

                'data' => [

                    'id' => 9999,

                    'name' => 'How Offers',

                    'image' => 'http://businessdotkom.com/storage/categories/January2020/1o6nDi1kjVuwje5FiFXv.png',

                    'products' => ProductIndexResource::collection(Product::whereNotNull('sale_price')->get()),

                ]

            ]);


查看完整回答
反對 回復(fù) 2022-09-17
?
人到中年有點(diǎn)甜

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

您可以使用 PHP 函數(shù)array_merge()


$categories = Category::whereNull('parent_id')->get()->toArray();


$merged = array_merge($categories, [

           [

             'id' => 9999,

             'name' => 'How Offers',

             'image' => 'http://businessdotkom.com/storage/categories/January2020/1o6nDi1kjVuwje5FiFXv.png',

             'products' => ProductIndexResource::collection(Product::whereNotNull('sale_price')->get()),

           ]

]);


return CategoryProductsResource::collection(collect($merged));


查看完整回答
反對 回復(fù) 2022-09-17
  • 2 回答
  • 0 關(guān)注
  • 135 瀏覽

添加回答

舉報(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)