예제 #1
0
 /**
  * Show the website home page
  *
  * @return Response
  */
 public function welcome()
 {
     $topics = App\Topic::news()->orderBy('updated_at', 'desc')->limit(5)->get();
     $authme = App\Authme::with('money')->get();
     // dd($authme);
     return view('home', ['topics' => $topics, 'authme' => $authme]);
 }