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 CommentTag: Laravel 5.1
Artisan is the command-line interface included with Laravel. It provides a number of helpful commands that can assist you while you build your application. Here…
1 CommentRecording the last login information is useful and you can easily save and update the last login time and IP address of the client. You…
6 CommentsSometimes you need to track the IP address of the visitors for different reasons. In this tutorial, I would like to show you, how to…
Leave a CommentRecently I have migrated core PHP application to the Laravel5 framework. The old application used SHA1 encryption so I have implemented Hashing contracts of laravel5…
2 CommentsIn this post, I would like to show how to automatically log out the user after some period of inactivity. Session timeout or Session expire…
15 CommentsI know we can achieve same with other methods but I am going do it with the Laravel’s Middleware. So let’s create Middleware called ForceHttpProtocol.…
2 CommentsIn this post, I am going to share Laravel installation steps. We Can install Laravel by using composer and Laravel installer. Laravel Installer is a…
Leave a CommentLogin Throttling is also called rate limiting which is very useful to increase the security of the application by protecting login form. Basically the…
2 Comments