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

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

$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 = 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

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

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