MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Upload Document and send Mail in Laravel | How to send attachment files to email using laravel ?

In this tutorial im going to demonstrate how to upload document and send data via Email. Please follow some easy steps mentioned below. First let’s go to install laravel project composer create-project laravel/laravel learning-project “5.8.*” lets go to .env folder and put database name and connect to database. DB_CONNECTION=mysqlDB_HOST=127.0.0.1DB_PORT=3306DB_DATABASE=learning-projectDB_USERNAME=rootDB_PASSWORD= Let’s to create Controller php artisan make:controller SendEmailController … Read more

How to Send email with Attachement in Laravel 5.8

In this tutorial i’m going to describe how to send attachement in laravel, please follow some easy steps define below. First let’s go to install laravel project composer create-project laravel/laravel learning-project “5.8.*” lets go to .env folder and put database name and connect to database. DB_CONNECTION=mysqlDB_HOST=127.0.0.1DB_PORT=3306DB_DATABASE=learning-projectDB_USERNAME=rootDB_PASSWORD= Now migrate the table php artisan migrate Create a Mailable class … Read more

Expected response code 250 but got code “530”, with message “530 5.7.1 Authentication required

I got stuck on this error I trying to configure SMTP mail on laravel here is my configuration on .env file This is Solved this Error your mail.php on config you declare host as smtp.mailgun.org and port is 587 while on env is different. you need to change your mail.php to if you desire to use mailtrap.Then run this command php artisan config:cache env() helper makes … Read more

How to setup mailtrap in laravel.

Everyone who is developing an application needs to test it with emails. These emails which we test can be a real heactic task if we use the real email ids. we will have to create or ask different persons for their emails and work on it. This is a real heactic task. To sort out … Read more