8 followers
Hello, I am Mrunali Khandekar. My Current Position at KEET is CTO / Director.
Subscribe to my newsletter and never miss my upcoming articles
I have used laravel version 8 but you can also implement this in other versions of laravel. 1) Install Laravel Project. *Type the below code in your terminal.* composer create-project --prefer-dist laravel/laravel Project121 2) Now Install Auth. To...
1) Install laravel Project. Using below command. composer create-project --prefer-dist laravel/laravel Ajax 2) Set route as follows route::get('/',[App\Http\Controllers\AjaxController::class,'index'])->name('index'); route::post('/insert-chapter',[...
1) Login to your gmail account. Click on "Manage your Google Account". 2) Click on security. 3) Enable 2 step verification click on get started Enter password and click next Now the 2 step verification is on. 3) Go to App passwords Select mail ...
1) Set up laravel project using below command. composer create-project --prefer-dist laravel/laravel SendMail This will install the latest version of laravel. I am using laravel version 8.2 Install Auth using below commands composer require laravel/u...
In this tutorial we will see pagination. We will display only 5 records fetched from database and when user clicks on next button remaining 5 records will be display and also when there are no more records next button will be displayed and previous b...
In this tutorial we will see how to re order the data using laravel framework and also store the order in database using ajax. Let's start this tutorial. 1) Install laravel framework using below command. Type the below command in terminal. composer c...