Example #1
0
 public function index()
 {
     if (Auth::check()) {
         return redirect('/home');
     }
     $feeds = Feed::take(6)->get();
     return view('pages.intro', compact('feeds'));
 }