In the previous posts I have covered two Laravel 5.4 features called “Laravel 5.4: Fluent Routing” and “Laravel 5.4: New middlewares – TrimStrings and ConvertEmptyStringsToNull. In this post I would […]
New middlewares in Laravel 5.4 – TrimStrings and ConvertEmptyStringsToNull
Laravel 5.4 shipped with two new middlewares called TrimStrings and ConvertEmptyStringsToNull TrimStrings middleware – automatically trim all the request data. ConvertEmptyStringsToNull middleware- automatically […]
How to show confirmation prompt while deleting row in Laravel.
It’s always better to ask for the confirmation while deleting items with alert prompt. So here I am gonna show you, how to show the confirmation prompt with Javascript within your Laravel application. HTML for delete […]
How to get Client IP Address in Laravel 5
Sometimes you need to track the IP address of the visitors for different reasons. In this tutorial, I would like to show you, how to get the IP address of clients in Laravel application. In PHP you use super global variable […]