Laravel infinite scroll for pagination output
问题 I'm new to laravel and I'm working on a project based on laravel version 4.2. I've got some problems with loading more results using scroll instead of default pagination. I know there are jQuery plugins that can help me out in this, but none of them or suggested ways in web could help me out well. so here is my code : laravel model //inside a AdGenerator class public function allAds(){ $allAds = DB::table('infos')->paginate(10); return $allAds; } laravel controller //inside controller $ads =