當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Model::get方法代碼示例

本文整理匯總了PHP中Illuminate\Database\Eloquent\Model::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP Model::get方法的具體用法?PHP Model::get怎麽用?PHP Model::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Database\Eloquent\Model的用法示例。


在下文中一共展示了Model::get方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get

 /**
  * Get records from the database.
  *
  * @param int $per_page
  *
  * @return Collection
  */
 public function get($per_page = 20)
 {
     $this->per_page = $per_page;
     $this->buildQuery();
     return $this->query->get();
 }
開發者ID:bhutanio,項目名稱:laravel-utilities,代碼行數:13,代碼來源:DbRepository.php

示例2: results

 /**
  * Get the results for the model.
  *
  * @return array
  * @throws ModelNotSetException
  */
 public function results()
 {
     if (!$this->model) {
         throw new ModelNotSetException('You must set a model to be used by the eloquent driver.');
     }
     return $this->model->get($this->select)->all();
 }
開發者ID:michaeljennings,項目名稱:carpenter,代碼行數:13,代碼來源:Eloquent.php

示例3: all

 /**
  * @param array $with
  * @return Collection
  */
 public function all(array $with = array())
 {
     $this->addWithCriteria($with);
     $this->applyCriteria();
     $result = $this->model->get();
     $this->refresh();
     return $result;
 }
開發者ID:ablunier,項目名稱:laravel-database,代碼行數:12,代碼來源:Repository.php

示例4: all

 /**
  * Return all instances of the model.
  *
  * @param array $columns
  * return \Illuminate\Database\Eloquent\Model
  */
 public function all($columns = array('*'))
 {
     $key = snake_case(class_basename($this) . '_' . __FUNCTION__);
     if (Cache::has($key)) {
         return Cache::get($key);
     }
     $result = $this->model->get($columns);
     Cache::add($key, $result, env('APP_CACHE_MINUTES'));
     return $result;
 }
開發者ID:ritey,項目名稱:absolutemini,代碼行數:16,代碼來源:AbstractRepository.php

示例5: fetch

 /**
  * Base fetch for all repository returns
  * This should be used when returning multiple records
  *
  * @param  Model $model - update model instance
  * @return Illuminate\Database\Eloquent\Collection
  */
 public function fetch($model = null)
 {
     if (!is_null($model)) {
         $this->model = $model;
     }
     $result = $this->paginated && is_int($this->paginated) ? $this->model->paginate($this->paginated) : $this->model->get();
     if ($this->paginated) {
         // Append custom query string to page links to maintain correct url filter and sorting
         $result = $result->appends($this->buildUrlQuery());
     }
     $this->reset();
     return $result;
 }
開發者ID:thinktomorrow,項目名稱:repo,代碼行數:20,代碼來源:BaseRepository.php

示例6: findWhere

 /**
  * Find data by multiple fields
  *
  * @param array $where
  * @param array $columns
  * @return mixed|Model
  */
 public function findWhere(array $where, $columns = ['*'])
 {
     return $this->wrap(function ($where, $columns = ['*']) {
         $this->applyWhere($where);
         return $this->model->get($columns);
     }, new Action(__METHOD__, func_get_args(), Action::READ));
 }
開發者ID:sandeeprajoria,項目名稱:Housekeeper,代碼行數:14,代碼來源:BaseRepository.php

示例7: getByCriteria

 /**
  * Find data by Criteria
  *
  * @param CriteriaInterface $criteria
  *
  * @return mixed
  */
 public function getByCriteria(CriteriaInterface $criteria)
 {
     $this->model = $criteria->apply($this->model, $this);
     $results = $this->model->get();
     $this->resetModel();
     return $this->parserResult($results);
 }
開發者ID:mammutgroup,項目名稱:l5-repository,代碼行數:14,代碼來源:BaseRepository.php

示例8: all

 /**
  * Retorna todos os registros deste Model.
  *
  * @param array $columns Colunas desejadas no retorno.
  *
  * @return mixed
  */
 public function all($columns = ['*'])
 {
     if (!empty($this->defaultOrderColumn)) {
         return $this->model->orderBy($this->defaultOrderColumn, $this->defaultOrderDirection)->get($columns);
     }
     return $this->model->get($columns);
 }
開發者ID:lfalmeida,項目名稱:lbase,代碼行數:14,代碼來源:Repository.php

示例9: getByCriteria

 /**
  * @param CriteriaInterface|string $criteria
  *
  * @return Collection
  */
 public function getByCriteria($criteria)
 {
     if (is_string($criteria)) {
         $criteria = $this->app->make($criteria);
     }
     $this->model = $criteria->apply($this->model, $this);
     $results = $this->model->get();
     $this->resetModel();
     return $this->parseResult($results);
 }
開發者ID:killtw,項目名稱:repository,代碼行數:15,代碼來源:BaseRepository.php

示例10: get

 /**
  * @param array $columns
  * @return mixed
  */
 public function get($columns = ['*'])
 {
     $this->applyBoot();
     $this->applyScopes();
     $this->applyCriteria();
     if ($this->model instanceof Builder) {
         $results = $this->model->get($columns);
     } else {
         $results = $this->model->all($columns);
     }
     $this->cleanRepository();
     return $results;
 }
開發者ID:guilhermegonzaga,項目名稱:repository,代碼行數:17,代碼來源:Repository.php

示例11: findWhere

 /**
  * Find data by multiple fields.
  *
  * @param array $where
  * @param array $columns
  *
  * @return mixed
  */
 public function findWhere(array $where, $columns = ['*'])
 {
     foreach ($where as $field => $value) {
         if (is_array($value)) {
             list($field, $condition, $val) = $value;
             $this->model = $this->model->where($field, $condition, $val);
         } else {
             $this->model = $this->model->where($field, '=', $value);
         }
     }
     $model = $this->model->get($columns);
     $this->resetModel();
     return $model;
 }
開發者ID:LavaliteCms,項目名稱:Example,代碼行數:22,代碼來源:BaseRepository.php

示例12: getByAdditionalCriterias

 /**
  * Find data by multiple Criterias
  *
  * @param array $criterias
  * @return mixed
  * @public param \Prettus\Repository\Contracts\CriteriaInterface[] $criteria
  */
 public function getByAdditionalCriterias(array $criterias)
 {
     $current_criteria = $this->getCriteria();
     if ($current_criteria) {
         foreach ($current_criteria as $c) {
             if ($c instanceof CriteriaInterface) {
                 $this->model = $c->apply($this->model, $this);
             }
         }
     }
     foreach ($criterias as $c) {
         if ($c instanceof CriteriaInterface) {
             $this->model = $c->apply($this->model, $this);
         }
     }
     $results = $this->model->get();
     $this->resetModel();
     return $this->parserResult($results);
 }
開發者ID:Nethanel,項目名稱:l5-repository,代碼行數:26,代碼來源:BaseRepository.php

示例13: random

 /**
  * @param array $columns
  * @return mixed
  */
 public function random($columns = array('*'))
 {
     return $this->model->get()->random();
 }
開發者ID:Burris19,項目名稱:ReposityLaravel,代碼行數:8,代碼來源:Repository.php

示例14: getIndex

 /**
  * Displays all the items
  */
 public function getIndex()
 {
     $items = $this->model->get();
     return $this->render('index', compact('items'))->with('columns', $this->tableColumns);
 }
開發者ID:dakshhmehta,項目名稱:laravel-starter-kit,代碼行數:8,代碼來源:CRUDController.php

示例15: get

 /**
  * Gets an entity by parameters
  *
  * @return \Illuminate\Database\Eloquent\Collection
  */
 public function get() : Collection
 {
     return $this->entity->get();
 }
開發者ID:prjkt,項目名稱:repofuck,代碼行數:9,代碼來源:Repofuck.php


注:本文中的Illuminate\Database\Eloquent\Model::get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。