Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

πŸš— You set the rental price
πŸ” Secure bookings with verified renters
πŸ“ Track your vehicle with GPS integration
πŸ’° Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

How to Verify an Email in Laravel?

How to Verify an Email in Laravel?

Step 1. Create a new Project in Laravel, so Open git Bash. Write down the following command:-

$ composer create-project --prefer-dist laravel/laravel Emailverify "5.8.*"Code language: JavaScript (javascript)

Step 2. Now, Move to project directory on git Bash, so write down the following command:-

$ cd emailverify

Step 3. So, we have to Create a new Database. Go to XAMPP server->phpMyAdmin->Click New Database-> emailverify.

Mysql Database connection Laravel

Step 4.  Now, Go to .env file to set the project path and give the project APP_URL, DB_DATABASE name and DB_USERNAME name.

Step 5. Create the user authentication scaffolding. Write down the following command:-

$ php artisan make:auth

Step 6. Go to app\Providers\AppServicesProvider.php and write down the following code:-

 public function register()
    {
        Schema::defaultStringLength(200);
    }Code language: CSS (css)
use Illuminate\Support\Facades\Schema;Code language: PHP (php)

Step 7. Thereafter, Migrate tables into the MySQL databaseWrite the following command within git Base.

$ php artisan migrate

Step 8. Implement the MustVerifyEmail feature in User Model.

Step 9. Go to routes/web.php file and write down the following code:-

Route::get('/home', 'HomeController@index')->name('home')->middleware('verified');Code language: PHP (php)

Step 11. Open this link https://mailtrap.io/ and login with your Google account.

Step 12. Click the demo inbox link.

Step 12. Copy port, username , password and paste in .env file.

Step 13. Firstly, You have to register, then log in your project.

Step 14. Now, you can see that it’s asking for email verification.

Step 15. After clicking, a fresh verification link would have sent to your email address. You can see the mailtrap.in the demo inbox.

Step 16. Click the Verify Email Address button . After that you’ll be logged in your dashboard.

Thanks

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.