コード例 #1
0
ファイル: Team.php プロジェクト: exelv1/Contentify
 /**
  * Select only those that have been published
  *
  * @param Builder $query
  * @return Builder
  */
 public function scopePublished($query)
 {
     return $query->wherePublished(true);
 }
コード例 #2
0
ファイル: News.php プロジェクト: chirilo/Contentify
 /**
  * Select only news that have been published
  *
  * @param Builder $query
  * @return Builder
  */
 public function scopePublished($query)
 {
     return $query->wherePublished(true)->where('published_at', '<=', DB::raw('CURRENT_TIMESTAMP'));
 }