Пример #1
0
 public function getUrlShow($id)
 {
     $page = Page::findOrFail($id);
     if (!is_null($page->topic_id)) {
         // page with a topic
         return route('page.show.topic', [$page->topic->slug, $page->slug]);
     }
     if (empty($page->slug)) {
         // frontpage
         return route('page.frontpage');
     }
     // page without a topic
     return route('page.show', [$page->slug]);
 }