Esempio n. 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $title = 'Prullenbak licenties';
     $licenses = License::paginate(30);
     return view('admin.licenses.index', compact('title', 'licenses'));
 }