Laravel 5.5

Posted by | September 20, 2017
Laravel 5.5 – Collection Dumping.

Laravel 5.5 has introduced 2 new methods on collections class which makes debugging easier than before. Lets take example of simple collection setup and pipe through some filters. collect([1,2,3])->map(function($i){ return...

Continue Reading
Posted by | September 5, 2017
Laravel: Database Query Optimization.

Laravel comes up with Eloquent and enables developer to make complex queries with ease. This refrains developers from checking what actually happens behind the scene. But if we don't take...

Continue Reading
Posted by | August 27, 2017
Laravel 5.5 – New Features – Part 2

php artisan migrate:fresh We all are familiar with refresh command. This will allow us rollback and re-run all migrations. This helps when we need to re-build database in development. Coming...

Continue Reading
Posted by | August 27, 2017
Laravel 5.5 – New Features – Part 1

vendor:publish gets provider prompt. Till now, Vendor:publish command publishes everything it finds including configs, views, migrations, and more. But from Laravel 5.5, when we run this command without any flag...

Continue Reading
Posted by | August 23, 2017
Laravel 5.5 – Package Auto Discovery

How we were doing Package installation in Laravel 5.4 Till Laravel 5.4, We were following standards steps to install and use package in Laravel Project. Install the package. Register the provider in...

Continue Reading