“Ларвель многих обновляет все” Ответ

Ларавел многих ко многим отношениям с поворотной таблицей

$user = User::find(1); //any user we want to find 
$user->trophies()->attach($idOfTrophy); 
//pass id or array of a Trophy ids 
//suppose admin has selected the trophy from a form and trophy id
// is in $request object, then.
$trophyId = $request->trophy_id;
$user->trophies()->attach($trophyId); //record is created in DB.
attach and syncWithoutDetaching both does same job
Zeevx

Ларвель многих обновляет все

$user->customviews()
    ->newPivotStatement()
    ->where('user_id', '=', $user->id)
    ->update(array('default' => 0));
Leonardo Dal Ronco

Ответы похожие на “Ларвель многих обновляет все”

Вопросы похожие на “Ларвель многих обновляет все”

Больше похожих ответов на “Ларвель многих обновляет все” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования