コード例 #1
0
ファイル: BaseRepository.php プロジェクト: zi9o/projet-cv
 public function getNumber()
 {
     $total = $this->model->count();
     $new = $this->model->whereSeen(0)->count();
     return compact('total', 'new');
 }
コード例 #2
0
ファイル: BaseRepository.php プロジェクト: jerjerod/avizon
 /**
  * Get number of records.
  *
  * @return array
  */
 public function getNumber()
 {
     $total = $this->model->count();
     $new = $this->model->count();
     return compact('total');
 }