/** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $data = Kelas::all(); return view('admin/kelas/view')->with('data', $data); }