Author
Pankaj Sood
Hello Friends, I'm Pankaj Sood, Full Stack Web Developer. Expertise in WordPress, PHP, Laravel, Angular, and Frontend Development. I'm building this site only to spread knowledge to the other user. And need your support to make this more flexible. So feel free to contact me, you can also submit your feedback using the contact us page. Thanks :)
In this article, we will discuss how to create custom 404 error view. Laravel provides an easy and simple way to create the custom 404 error page.As we know, Laravel having specific files to manage all of the file routes. Laravel provides…
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…
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 Custom Helper Functions File
In 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…
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…
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…
How to install Laravel 5 with Xampp using Composer
In this article, we are discussing how to install Laravel 5 with xampp using composer. I'm assuming you are familiar with the xampp.You will need to make sure your server meets the following requirements:PHP >= 7.1.3
OpenSSL PHP…
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…
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…
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.…