Skip to content

Instantly share code, notes, and snippets.

@evercode1
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save evercode1/bb75b7ca8676211c6c07 to your computer and use it in GitHub Desktop.

Select an option

Save evercode1/bb75b7ca8676211c6c07 to your computer and use it in GitHub Desktop.
deleteAction Profile Controller Chap 8
public function actionDelete()
{
$model = Profile::find()->where(['user_id' => Yii::$app->user->identity->id])->one();
$this->findModel($model->id)->delete();
return $this->redirect(['site/index']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment