Install Composer on Windows and WAMP Server

Composer is a dependency manager tool. Nowadays every other PHP package available out there is using composer for installing. Gone are the old days when developers use to require the required files for including a package. With composer you just need to add the package name in composer.json and composer will not only download the […]

Install Laravel 5 on WAMP Server

In this super small tutorial we’ll learn how to install Laravel 5 on WAMP server. It is assumed that you have a basic knowledge of WAMP. I am using Windows 7 Operating system. In case you are using Windows 8 or 10 or even a XP, the installation steps will remain the same. For installing […]

Laravel pagination for custom queries

If you have used laravel for any CRUD application you may used the paginate method on you query builder for generating pagination links. However this method doesn’t work well with groupBy and raw queries. This post shows few examples of generating pagination manually using the Paginator class.