Beanstalkd was first developed to solve the needs of a popular web application (Causes on Facebook). Currently, it is an absolutely reliable, easy to install messaging service which is perfect to get started with and use. Reference this posts Production-Ready…
Config PostgreSQL and Laravel
Wiki PostgreSQL is a powerful, open source object-relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all…
Adding a Queue Worker in Laravel
Queue in laravel are no different with other queue services, it use easy and common procedures: There is a place to store the queue information, a PHP process at runtime writes tasks, another guard PHP polling process queue information, will…
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',…