Skip to main content
Post Image

Login Register with Bootstrap Auth in Laravel

Login and Registration with Laravel are very simple, easy, and quick. You can make it within five minutes. Laravel provides you pre-build functionality for login and registration of new users. You just need to follow the following steps. Step 1: Install Laravel Create a new Laravel project using composer, if you do have not any […]

Post Image

How to create Middleware in Laravel

Middleware is a mechanism that allows you to filter HTTP requests entering your application. It sits between your application and the user’s browser, intercepting incoming requests and performing actions before passing the request on to the application’s routes or controllers. Middleware is useful for tasks such as authentication, logging, and input validation. Laravel provides several […]

Post Image

Routing in Laravel

In Laravel, you can define routes using the Route facade, which provides a simple and expressive way to define HTTP routes. Following are some examples of routes how to create routes in Laravel. Route is a URL pattern that maps to a specific controller action or function in your application. Laravel provides a powerful routing […]

Post Image

How to send email with HTML template using gmail SMTP in Laravel 8

In this post, I will let you know how to send email in laravel using Gmail SMTP in simple and easy steps. Laravel 8 provides several ways to send an email and you can use any email service provider. First of all, you need to install laravel and after that need to follow the following […]

Post Image

How to install Laravel 7, 8, 9 by composer

Server Requirement: The Laravel framework has a few system requirements. If you are installing laravel 7. If you are trying to install Laravel by composer then it will automatically pick the laravel version according to your PHP version. But you can specify the version while installing it using composer. PHP >= 7.2.5 BCMath PHP Extension […]

Post Image

How to send ajax request from WordPress using POST method

Ajax is a way to get, post, update, and delete data without refreshing the page. WordPress ajax is different as compared to the normal ajax in PHP. The WordPress ajax, URL is the same for all ajax requests but there is one param action and it is unique for every request. Also, the action param […]

Post Image

How to install WordPress

WordPress is an easy job to install and run. It takes just 5 minutes to install and run the basic setup of your website. WordPress gives you lots of prebuild features like you can set any pre-build theme, or plugin as per your requirements. Also, there are some ways to customize WordPress as well. WordPress […]