Exemplo n.º 1
0
 public function tag($tag)
 {
     $data = ['posts' => Posts::i()->getPostsByTag($tag), 'title' => 'Тэг: ' . $tag];
     View::share('seo_title', $data['title']);
     $this->title->prepend($data['title']);
     return view('site.posts.index', $data);
 }
Exemplo n.º 2
0
 public function tag($tag)
 {
     Title::prepend('Тэг: ' . $tag);
     $data = ['posts' => Posts::i()->getPostsByTag($tag), 'title' => Title::renderr(' : ', true), 'q' => ''];
     view()->share('seo_title', $data['title']);
     return view('site.posts.index', $data);
 }