Skip to main content

Posts

Showing posts from March, 2018

All You Need To Know Laravel Routing

In this article, we will discuss Laravel Routing in depth. Laravel provides the wonderful feature to make routing easy and simple. We can manage each of the URLs from a single file. Today we will not only explore the types of the route and its features. We will discuss more closely Laravel... Read out the full post at here

Laravel CSRF Protection

In this article, we will discuss Laravel CSRF Protection. As we know, Laravel provides rich security features for a complete web application. Let’s start the Laravel CSRF Protection in brief. Laravel provides the easy way to protect the Laravel App from CSRF (Cross-Site Request Forgery)... Read out the full post at here

Laravel Custom Helper Functions File

Ln this article, We will discuss how to add in Laravel custom helper functions files. We know that Laravel provides lots of inbuilt features. But sometimes we need to create some reusable functions, which contains as required valuable logic. That functions reduce the development time frame. In L... Read out the full post at here

Secure User Authentication with Regex Validation

In this article, we will discuss how to make secure user authentication with regex validation. With this validation, we are forcing the user to add the password in a specific format. For example, User forced to add minimum 8 character length with upper/lower characters, digits and special c... Read out the full post at here

Laravel Default Authentication Setup

In this article, We will discuss Laravel Default Authentication Setup. Laravel is a great PHP framework and currently, it’s the most starred PHP project on GitHub. Today, I will show you how easy it to add authentication to it without writing more logic. Laravel makes authentication more s... Read out the full post at here

Setup Virtual Host in Windows with Xampp Server

In this article, we are discussing Setup Virtual Host in windows on xampp server. You must be aware of XAMPP Server before this tutorial implementation. XAMPP is a cross-platform open-source web server bundle. Anyone, who is new to the development or using of XAMPP, can visit here and download ... Read out the full post at here

Custom User Email Verification / Activation Laravel

In this article, we will discuss how to make a Custom User Email Verification / Activation Laravel for the user and send an activation link to the user registered email address. Before starting with the custom user email verification and activation. Please make sure, we need a basic Laravel... Read out the full post at here

Understanding Laravel Middleware

In this article, we will discuss Laravel Middleware. As per the name Middleware, Its like a mechanism which works between HTTP Request and Response. Laravel has default middleware for user authentication, CSRF token verification and etc. Creating Laravel Middleware Laravel ships with the artisan... Read out the full post at here