Difference between Laravel $request->input(), $request->get(), and $request->name direct property
If you’ve been around Laravel for a while, you might have seen there are three ways in controllers to retrieve inputs from the submitted form. For example, if you are trying (...)
0
0
12791
What is Teleport Component in Vue.js 3?
Vue 3 provides the <teleport> component. Here in this post, I will show you how to use the <teleport> component in your Vue.js 3 project.

0
0
10592
Multiple v-model Bindings in Vue 3
In this guide, I will explain the new v-model in Vue 3 and go through a new feature that permits you to utilize various v-model on the same component!

0
0
8928
How to Add Google reCAPTCHA to a PHP Form with Example?
In this guide, we will integrate the Google reCAPTCHA in the PHP contact form. Utilizing this Google reCAPTCHA code, we can validate the human users and protect the form of submission (...)

0
0
35709
What is the difference Between watch and watchEffect in Vue.js 3?
There are a few cases where we may need to track a reactive property, and we can do this by utilizing a Vue watcher.

0
0
3952
10 Things to Do After Installing Ubuntu Operating System
In this article, I will show you 40 things you can do after installing Ubuntu on your system. This isn't restricted to a specific version of Ubuntu; you can follow these on any (...)

0
0
7719
Ubuntu Installation step by step guide with disk partitioning
Ubuntu is the most loved OS for many desktop users, particularly for developers. Canonical releases new Ubuntu versions every six months with free support for nine months and every (...)

0
3
70899
How to enable email verification support in Laravel
As we all know, an email confirmation is a must-have feature for the most web application. That is the inbuilt solution for us after the Laravel v5.7 release, and we can easily (...)

0
0
3706
How to Delay notifications by channel in Laravel 8.x?
Up until now, in Laravel, if you need to delay notifications, you could do it by chaining the delay method onto your notification object like so.
0
0
4231
Sending Email in Laravel using Gmail SMTP Server
In this post, we talk about how to send email using the Gmail SMTP server in Laravel. Well, there's no uncertainty the need to send emails in your web application will emerge, (...)

0
0
4455