本文整理匯總了PHP中app\models\News::fill方法的典型用法代碼示例。如果您正苦於以下問題:PHP News::fill方法的具體用法?PHP News::fill怎麽用?PHP News::fill使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類app\models\News
的用法示例。
在下文中一共展示了News::fill方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: actionCreate
protected function actionCreate()
{
try {
$article = new News();
$article->fill([]);
$article->save();
} catch (MultiException $e) {
$this->view->errors = $e;
}
echo $this->view->render(__DIR__ . '/../templates/update.php');
}
示例2: actionCreate
/**
* Действие для добовления новости
*
*/
protected function actionCreate()
{
if ($this->isPost()) {
try {
$news = new News();
$news->fill($_POST);
$news->save();
$this->redirect('/Admin');
} catch (MultiException $error) {
$this->view->errors = $error;
}
} else {
$this->view->errors = null;
}
$this->view->display(__DIR__ . '/../Templates/News/Create.php');
}
示例3: update
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param News $news
* @return \Illuminate\Http\Response
* @internal param int $id
*/
public function update(Request $request, News $news)
{
$news->fill($request->all());
$news->update();
return redirect()->route('admin.news.index');
}