コード例 #1
0
ファイル: IdeaController.php プロジェクト: moshtaghi/ideabase
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     return Idea::all();
 }
コード例 #2
0
 public function supporters()
 {
     $ideaCount = Idea::count();
     $ideaSupporters = Idea::all();
     return view('account.supporters')->with('ideaCount', $ideaCount)->with('ideaSupporters', $ideaSupporters);
 }