Пример #1
0
 public function show(Category $category)
 {
     $this->authorize('blog.categories.show');
     $category->load(['posts']);
     $title = 'Blog - Categories';
     $this->setTitle($title);
     $this->addBreadcrumb('Category - ' . $category->name);
     return $this->view('foundation.categories.show', compact('category'));
 }