예제 #1
0
 /**
  * Display the main page of the forum.
  * All conversations are listed.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $conversations = $this->conversationRepo->latest()->paginate(10);
     return view('Forum::index', compact('conversations'));
 }