Пример #1
0
 /**
  * @param $slug
  *
  * @return \Illuminate\View\View
  */
 public function uri($slug)
 {
     $content = $this->page->findPublishedPageBySlug($slug);
     $this->throw404IfNotFound($content);
     $template = $this->getTemplateForPage($content);
     return view($template, compact('content'));
 }