示例#1
0
 public function getTag($tag)
 {
     PHPRedis::incr('count_pages');
     $videos = Video::withAnyTags($tag)->where('validated', true)->get();
     return view('front.overviews')->with(compact('videos'));
 }