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