By default, WordPress show too detailed error messages when someone enters incorrect username or password on the login page. These error messages can be used as a hint to guess a username, user email address, or password. […]
Bookshelf js – Deleting Row and Related Rows in a Many-to-Many Relationship
In this post I would like to show you a best way to destroy a model and related models/collections of many to many relationship records. What is Bookshelf js From the authors of Bookshelf, Bookshelf is a JavaScript ORM […]
Import contacts from Outlook, Office 365 and Live to your PHP application
In this tutorial I will show you, how to import Outlook,office 365 and Live contacts to your web project, using a PHP. Microsoft Apps Creation To access Microsoft APIs you need to create Microsoft App and specify App ID […]
Laravel Create Controller, Model and migration in one Artisan Command
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 I am gonna show you a command which will generate controller, […]
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 record last login time and IP address of a user In Laravel
Recording last login information is useful and you can easily save and update the last login time and IP address of the client. You can achieve this in several ways but I am gonna show you very simple and effective technique, […]
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 […]
Laravel 5 Role Based Access Control using Middlewares
In this post, I would like to show you very simple approach to develop a security layer around Laravel routes with custom Middleware. Laravel Middleware Middleware provides a convenient mechanism for filtering HTTP requests […]