In this tutorial, you will learn how to merge multiple pdf files in your Laravel application. We gonna write a simple PHP script to merge…
2 CommentsTag: Laravel 5.5
In this post, I would like to show the different ways to get last inserted ID from the database table when working with Laravel PHP…
Leave a CommentIn this post, I will show you a simple method to log each and every Eloquent Query your application executes. We gonna log queries to…
Leave a CommentIn Laravel 5.5, writing custom blade if Directives is pretty easy. Using this new feature, you can write simplified and clean if statements in your…
Leave a CommentAs part of Laravel 5.5 version release, Laravel introduced new blade directives called @auth and @guest.As the name implies both can be useful to determine…
3 CommentsLaravel offers two new useful debugging methods dump() and dd() as part of Laravel 5.5 version release. These methods are added to Collections, it means…
Leave a CommentLaravel 5.5 includes a new `Optional` class with a new helper() function, which you can think of as a generic null object implementation. The point…
Leave a CommentLaravel 5.5 is introduced a new feature called dynamic view loading and it makes your controllers simple and more expressive when dealing with dynamic templates.…
Leave a CommentWe gonna use barryvdh/laravel-dompdf Laravel package to generate PDF files from view file. This package is just a wrapper around DOMPDF library. Installtion Use below…
1 CommentLaravel 5.5 introduced new Router class method called redirect, which gives the flexibility to redirect to other URLs directly without creating a controller or closure.…
Leave a CommentLaravel 5.5 introduced new Router class method called view, which gives the flexibility to render the view file directly without creating a controller or closure.…
Leave a CommentIn this post, I will show how easy it is to use API resources to build REST APIs. In the previous Laravel REST API tutorial,…
3 CommentsIn Laravel 5.5 a new Artisan command added to migrate: namespace. This is similar to the existing migrate:refresh option, however, rather than rolling back your…
Leave a CommentThis tutorial provides an example of building a complete RESTful API using Laravel 5.5.* Framework. You gonna use the different HTTP methods during the REST…
36 Comments