The performance of our applications is one of the top things we should care about. Inefficient Eloquent or DB queries are probably no.1 reason for bad performance. In this tutorial, I will show you the top mistakes developers make when it comes to Eloquent performance, and how to fix them. In this blog post, we will discuss some strategies to…
Tag Archives Laravel 9
To prevent bots from registering into your web app you can add a Captcha. In this tutorial, I will show you how to add Google reCAPTCHA to the register page in laravel 9 Step 1. Custom Validation Rule We will validate the recaptcha after submitting the form. So first, we will create a custom validation rule. php artisan make:rule Recaptcha This will create a…