当前位置: 首页>>代码示例>>PHP>>正文


PHP Builder::firstOrFail方法代码示例

本文整理汇总了PHP中Illuminate\Database\Eloquent\Builder::firstOrFail方法的典型用法代码示例。如果您正苦于以下问题:PHP Builder::firstOrFail方法的具体用法?PHP Builder::firstOrFail怎么用?PHP Builder::firstOrFail使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Illuminate\Database\Eloquent\Builder的用法示例。


在下文中一共展示了Builder::firstOrFail方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: first

 /**
  * Get the first specified model record from the database
  *
  * @return \Illuminate\Database\Eloquent\Model
  */
 public function first()
 {
     $this->newQuery()->eagerLoad()->setClauses()->setScopes();
     $model = $this->query->firstOrFail();
     $this->unsetClauses();
     return $model;
 }
开发者ID:Okipa,项目名称:una.app,代码行数:12,代码来源:BaseRepository.php

示例2: searchFor

 /**
  * @param       $value
  * @param array $in
  * @return Model
  */
 public function searchFor($value, array $in)
 {
     foreach ($in as $key) {
         $this->model = $this->model->orWhere($key, $value);
     }
     return $this->model->firstOrFail();
 }
开发者ID:crip-laravel,项目名称:core,代码行数:12,代码来源:Repository.php

示例3: update

 /**
  * @param $id
  * @param $data
  * @param bool $orFail
  * @return mixed
  *
  * updates an existing record
  */
 public function update($id, $data, $orFail = false)
 {
     if ($id instanceof Model) {
         $this->model = $id;
     } else {
         $this->model = new $this->modelClass();
         $table = $this->model->getTable();
         $this->model = $this->model->newQuery();
         $this->model->where($table . '.' . $this->identifier, '=', $id);
         $this->model = $orFail ? $this->model->firstOrFail() : $this->model->first();
         if (!$this->model) {
             return false;
         }
     }
     if (!is_array($data)) {
         $data = $this->extractData($data);
     }
     $this->model->fill($data);
     foreach ($this->updateDefaults() as $key => $value) {
         $this->model->{$key} = $value;
     }
     $this->model->save();
     return $this->model;
 }
开发者ID:pointer-ba,项目名称:bundle,代码行数:32,代码来源:Repository.php

示例4: firstOrFail

 /**
  * Execute the query and get the first result or throw an exception.
  *
  * @param array $columns
  * @return \Illuminate\Database\Eloquent\Model|static 
  * @throws \Illuminate\Database\Eloquent\ModelNotFoundException
  * @static 
  */
 public static function firstOrFail($columns = array())
 {
     return \Illuminate\Database\Eloquent\Builder::firstOrFail($columns);
 }
开发者ID:satriashp,项目名称:tour,代码行数:12,代码来源:_ide_helper.php

示例5: first

 /**
  * @param array $columns
  * @return mixed
  */
 public function first()
 {
     $this->applyCriteria();
     return $this->execute($this->model->firstOrFail());
 }
开发者ID:DiSiqueira,项目名称:TheOscars,代码行数:9,代码来源:Repository.php


注:本文中的Illuminate\Database\Eloquent\Builder::firstOrFail方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。