In this article we are going to create slug from any input field. slug is useful search engine optimization and also from security perspective because in some case we use primary id or unique id of table to fetch the…

How to create controller in Laravel 8?
In Laravel controller is most important part to create the connection between our business logic to our view. Laravel is a MVC pattern and C stands for controller. It’s responsible for to receive the input from user, process them and…

How to create resource controller in Laravel 8 ?
Resource controller is helpful when you want Create, Read, Update and Delete (CRUD) operations. If you have a model with same set of actions like crud then resource controller are useful. we can create resource controller easily using the artisan…
What is Laravel 8 middleware ?
Laravel middleware is a mechanism to filter the http request and response. As the name implies that middleware so it’s middle between the request and response. we can change or validate request and response using the Laravel middleware. There is…

Laravel 8 Ajax form validation with example
In this article, I will demonstrate to show Laravel server side validation using Ajax. We will use jQuery to show the validation and submit the form. Using the jQuery and AJAX we will prevent the page reloading and show the…

How to make custom validation in Laravel 8 ?
In this tutorial we will learn to implement custom validation rule in Laravel 8. Laravel has too many validation rules but sometime we feel some rules are missing according to our project need. so, in this article we will learn…

How to generate qr code in Laravel 8?
In this article we will learn to generate the qr code in Laravel. we will use a simple example to generate the qr code. As we know qr code is stand for Quick Response and we can scan and get…

How to Clear cache in Laravel 8 ?
Cache is used to improve the performance of web application using caching the views templates, queries, CSS, JavaScript etc. Cache improves the performance by serving the cached pages and improves the speed of website but sometime develops face issues like…

Create custom middleware in Laravel 8
In this tutorial we will going to learn custom middleware in Laravel 8. Middleware are used to create a layer between request and response of the http request. it filters or create a logic before the request serve to the…

Laravel 8 routing with example
In this post we will learn to implement the Laravel 8 routing and how it’s different from Laravel other versions. Laravel routing is used to create the URL for each POST, GET requests and it works as a bridge between…