예제 #1
0
파일: Finder.php 프로젝트: creolab/krustr
 /**
  * The home page
  * @return View
  */
 public function home()
 {
     Profiler::start('FINDER - HOME');
     // Get entry used for the home page
     $entry = $this->entryRepository->home();
     // Share with all views
     View::share('entry', $entry);
     Profiler::end('FINDER - HOME');
     return $this->render('index');
 }