If you want to take advantage of the new awesomeness, you can do so very easily thanks to a PPA. If you've never added a PPA before, you will want to make sure that you have python-software-properties installed so you…
Laravel Ajax Multi Pagination in a Single Page
If you're existing Laravel user, you know that Laravel has make pagination easy. If you're new, I will show you how. First of all, in your app/routes.php, add in an extra routes. <?php // ... Route::get('items', array( 'as' => 'items',…
Laravel Ajax Pagination with jQuery
Laravel has make pagination very easy. In this post I will show you how to make a single Ajax pagination in Laravel with jQuery. Controller: app/controllers/BlogController.php <?php class BlogController extends Controller { /** * Posts * * @return void */…
Laravel Schedule Tasks Artisan Commands with Dispatcher
Wiki Dispatcher Dispatcher is a Laravel artisan command scheduling tool used to schedule artisan commands within your project so you don't need to touch your crontab when deploying. Cron The software utility Cron is a time-based job scheduler in Unix-like…