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

Fatal error: Maximum execution time of 300 seconds exceeded in C:\xampp\phpMyAdmin\libraries\classes\Dbi\DbiMysqli.php on line 199

Whenever you import file in in database then after some processing time its show you have using Maximum execution time of 300 seconds exceeded will be showing this type of error in your database: First of all stop your Xampp Next step : go to config.default.php Once that’s done get back to finding phpMyadmin config … Read more

Class ‘App\Http\Controllers\Student’ not found

In this tutorial I’m going to describe how to solve “Class ‘App\Http\Controllers\Student’ not found” if you got this types of error please follow some easy steps 1step this types of error is showing when you’re not using class name whatever you have define below code as like :- public function index(){$students = Student::all(); return view(‘students.dashboard’,compact(‘student’));} … Read more

How to create virtual local host setup in Laravel

In this tutorial I’m going to describe how to set up virtual host in Laravel. Please follow this Tutorial and you able to create successfully virtual host in Laravel 1. Go to C drive and Go to this Directory-> C:\xampp\apache\conf\extra and open httpd-vhosts name of folder Open this folder -> httpd-vhosts 2nd Step Copy Below Code 👇 <VirtualHost *:80> … Read more

SQLSTATE[HY000] [1049] Unknown database ‘Laravel’ (1049)

In this tutorial I’m going to describe how to fix “unknown database in laravel Bug” Unknown database:- SQLSTATE[HY000] [1049] Unknown database ‘laravel’ (1049) Whenever you migrate in laravel and its showing unknown database name, please follow some easy steps its helpful for you. php artisan migrate When you stuck this kind of bug you have to go .env … Read more

Create contact form in laravel 5.8

In this tutorial I’m going to create contact form in laravel and store in database please follow some easy steps mentioned below. 1 step you have to download project copy to below code and paste in command. composer create-project — prefer-dist laravel/laravel contact “5.8.*” 2nd go to .env folder and put database name as :- contact Next … Read more

MySql queries:

Inserting data into a existing table: Syntax without column names specified: Example: In the example we have inserted the data in a customer_table where we have 4 columns with name cust_id, first_name, last_name, age and we have inserted the data in the columns with this command. Syntax without column names specified: Example: In this example … Read more