If you update the user email address when you are using the device gem, it will be stored in the unconfirmed_email column and it will…
1 CommentAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
In 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 CommentIn this post, we gonna write a simple PHP script to grab the given website URL screenshot. So let’s create an HTML form to collect…
3 CommentsAs 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 CommentYou can easily change created_at and updated_at column names by overriding CREATED_AT and UPDATED_AT constants in your Eloquent model. Example #Task Model Let’s assume you…
Leave a CommentGiving download option to the user is a pretty common requirement in today’s web apps for the variety of reasons. For example, if your application…
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 this post, I will show you How we can use the NGINX web server as a Reverse Proxy server. NGINX is very powerful. It…
Leave a Comment