Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return mixed
  */
 public function index()
 {
     $clubs = Club::paginate(15);
     return view('admin.data-management.clubs.index', compact('clubs'));
 }