Esempio n. 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $themes = Theme::paginate(10);
     return view('themes.index', compact('themes'));
 }
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $theme = Theme::paginate(15);
     return view('backend/theme.index', compact('theme'));
 }