collection-dumping

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