我想改组一个数组。但它不会起作用。这是我在Laravel中的查询
$spielerArray = Spieler::join('PlanungSpieler', 'PlanungSpieler.Player_ID', '=', 'Spieler.Player_ID')
->select('Spieler.Player_ID')->get();
在接下来的步骤中,我只想改变Spieler.Player列。
$finalShuffleResult = shuffle($spielerArray->Player_ID)
我得Player_ID Instance does not exist on this collection
这是我收藏的一部分
Illuminate\Database\Eloquent\Collection Object
(
[items:protected] => Array
(
[0] => App\Spieler Object
(
[table:protected] => Spieler
[connection:protected] => mysql
[primaryKey:protected] => id
[keyType:protected] => int
[incrementing] => 1
[with:protected] => Array
(
)
[withCount:protected] => Array
(
)
[perPage:protected] => 15
[exists] => 1
[wasRecentlyCreated] =>
[attributes:protected] => Array
(
[Player_ID] => 101
)
如何让Player_ID获得洗牌的目标?
答案 0 :(得分:1)
使用它
$finalShuffleResult = $spielerArray->pluck('Player_ID')->shuffle()->all();