Exemplo n.º 1
0
 /**
  * List all entries
  * @return View
  */
 public function index()
 {
     // Find in repository
     $entries = $this->repository->allInChannel($this->channel->name, Input::all());
     return View::make('krustr::entries.index', array('entries' => $entries, 'pagination' => $this->repository->pagination()));
 }