コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $users = User::all();
     return view('locale::index', compact('users'));
 }
コード例 #2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     //  return redirect()->route('admin::chart.all.index');
     $users = User::all();
     return view('dashboard::index', compact('users'));
 }