/** * Show the admin categories index page. * * @return \Response */ public function getIndex() { $categories = $this->categories->findAll('order', 'asc'); return view('admin.categories.list', compact('categories')); }
/** * Get all the categories to include in the sitemap. * * @return \Illuminate\Database\Eloquent\Collection|\App\Category[] */ public function getCategories() { return $this->categories->findAll(); }