How to Add Google reCAPTCHA v3 to form in Laravel

Google reCaptcha v3 is a new version of reCaptcha where user doesn’t have to interact. It returns a score for each request which use to restrict form.

At the bottom of the page “protected by reCAPTCHA” icon is visible if integrated successfully.

In this tutorial, I show how you can add Google reCaptcha v3 to the form using the Laravel reCaptcha package in Laravel 9.

How to Add Google reCAPTCHA v3 to form in Laravel

Read more

CodeIgniter 4 Helper Functions: Creating and Harnessing Their Power

CodeIgniter 4 allows creating helper files to store collection of reusable functions. Require loading the helper before using that helper file function.

Helper functions offer numerous advantages. They encapsulate repetitive or complex code into reusable functions, promoting code reusability and maintainability. By abstracting common functionality into helper functions, developers can write cleaner and more concise code, enhancing the overall efficiency of their development workflow.

Files are stored in app/Helpers/ folder.

In this tutorial, I show how you can create helper functions and use them in the controller and view in CodeIgniter 4.

CodeIgniter 4 Helper Functions: Creating and Harnessing Their Power

Read more