本文整理汇总了PHP中Eloquent::find方法的典型用法代码示例。如果您正苦于以下问题:PHP Eloquent::find方法的具体用法?PHP Eloquent::find怎么用?PHP Eloquent::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Eloquent
的用法示例。
在下文中一共展示了Eloquent::find方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
/**
* Update the specified resource in storage.
*
* @param int $id
* @return Response
*/
public function update($id)
{
$input = \Input::all();
$validation = \Validator::make($input, $this->getRules());
if ($validation->passes()) {
$record = $this->Model->find($id)->update($input);
return \Redirect::route($this->routeName . 'show', $id);
}
return \Redirect::route($this->routeName . 'edit', $id)->withInput()->withErrors($validation);
}
示例2: getById
/**
* Get a specific resource.
*
* @param integer $id
*
* @return Resource
* @throws ModelNotFoundException
*/
public function getById($id)
{
return $this->model->find($id);
}
示例3: update
/**
* Update an existing item
* @param int This variable is primary key that wants to update
* @return boolean
*/
public function update($id)
{
$result = $this->model->find($id)->fill($this->getInput())->save();
return $result;
}