$correctOrder = [
'Homepage',
'Shop',
'About Us'
];
だから、最終的にはこの配列の助けを借りて、指定されたコレクション
Collection {
#items: array:3 [
0 => MenuPosition, // ->label = "About Us"
1 => MenuPosition, // ->label = "Homepage"
2 => MenuPosition // ->label = "Shop"
]
}
をソートする方法
は
Collection {
#items: array:3 [
0 => MenuPosition, // ->label = "Homepage"
1 => MenuPosition, // ->label = "Shop"
2 => MenuPosition // ->label = "About Us"
]
MenuPositionは雄弁のモデルのインスタンスである
ありがとうございます。これは非常に簡単で、Collectionマクロに変換するとさらにシンプルになります:) –