コード例 #1
0
ファイル: AdminController.php プロジェクト: GokulSrinivas/sep
 public function view()
 {
     $registrations = registration::paginate(50);
     $ugregcount = Registration::where('degree', 'UG')->where('email_sent', 1)->count();
     $pgregcount = Registration::where('degree', 'PG')->where('email_sent', 1)->count();
     $totalugregcount = Registration::where('degree', 'UG')->count();
     $totalpgregcount = Registration::where('degree', 'PG')->count();
     return view('view', compact('registrations', 'ugregcount', 'pgregcount', 'totalugregcount', 'totalpgregcount'));
 }
コード例 #2
0
 public function view()
 {
     $registrations = registration::paginate(50);
     return view('view', compact('registrations'));
 }