示例#1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $rows = AdminUser::paginate(10);
     return View::make("CoreCms::user.listing")->with("models", $rows);
 }