예제 #1
0
파일: Controller.php 프로젝트: w1lliams/sh
 /**
  * Счетчики огранизаций и работников
  */
 protected function getCounters()
 {
     View::share('organizationCount', Organization::where('snapshot_id', '>', 0)->count());
     View::share('workersCount', Worker::count());
 }