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


PHP Model::whereNotIn方法代碼示例

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


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

示例1: findWhereNotIn

 /**
  * Find data by excluding multiple values in one field
  *
  * @param       $field
  * @param array $values
  * @param array $columns
  *
  * @return mixed
  */
 public function findWhereNotIn($field, array $values, $columns = ['*'])
 {
     $this->applyCriteria();
     $model = $this->model->whereNotIn($field, $values)->get($columns);
     $this->resetModel();
     return $this->parserResult($model);
 }
開發者ID:mammutgroup,項目名稱:l5-repository,代碼行數:16,代碼來源:BaseRepository.php

示例2: whereNotIn

 /**
  * Add whereNotIn condition for next query.
  *
  * @param string $column
  * @param array  $value
  *
  * @return void
  */
 public function whereNotIn($column, array $value)
 {
     $this->model = $this->model->whereNotIn($column, $value);
     return $this;
 }
開發者ID:LavaliteCms,項目名稱:Example,代碼行數:13,代碼來源:BaseRepository.php

示例3: availableCountries

 /**
  * @return mixed
  * Get
  * @todo : Cache the Query
  */
 public function availableCountries()
 {
     $selectedCountry = Session::has('user.country') ? Session::get('user.country') : null;
     $query = $this->model->whereNotIn('iso_code', [$selectedCountry])->get();
     return $query;
 }
開發者ID:christiannwamba,項目名稱:laravel-site,代碼行數:11,代碼來源:CountryRepository.php

示例4: whereNotIn

 /**
  * Find data by excluding multiple values in one field
  *
  * @param       $field
  * @param array $values
  *
  * @return mixed
  */
 public function whereNotIn($field, array $values)
 {
     $this->applyCriteria();
     $this->model = $this->model->whereNotIn($field, $values);
     return $this;
 }
開發者ID:eaglesistemas,項目名稱:eaglerepository,代碼行數:14,代碼來源:BaseRepository.php

示例5: scopeWhereNotInSubQuery

 /**
  * @param EloquentBuilder|QueryBuilder|Model $query
  * @param string $column
  * @param QueryBuilder $subQuery
  * @param string $subQueryColumn
  *
  * @return QueryBuilder
  */
 public function scopeWhereNotInSubQuery($query, $column, $subQuery, $subQueryColumn)
 {
     $subQuery = $subQuery->toSubQuery($subQueryColumn, true);
     return $query->whereNotIn($column, $subQuery);
 }
開發者ID:brazenvoid,項目名稱:better-eloquent,代碼行數:13,代碼來源:BetterEloquentTrait.php


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