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

How to Install Laravel and Create first View Page in Laravel ?

In this tutorial im going to describe how to install laravel project and create first view pages, so 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 … Read more

Multi File upload with Image preview and checklist delete options

In this tutorial iโ€™m going to describe how to upload multiple image with crud operation edit, update delete in laravel. Image upload is necessary of every project. In this project iโ€™m going to learn how to upload with validation like images, mimes, max file upload and etc, with image preview when uploading image and adding … Read more

How to Upload Multiple Image in Laravel

In this turoial im going to learn how to upload multiple image in laravel and store in database. Image upload is necessary of every project. In this project iโ€™m going to learn how to upload with validation like images, mimes, max file upload and etc. So letโ€™s go to download project and configure with database. … Read more

Laravel 8 Form Example Tutorial

In this tutorial iโ€™m going to describe to create form and store data in database. Please follow some easy steps mentioned below. How to Submit Form Data into Database in Laravel 8 Step 1 โ€” Install Laravel 8 Application Step 2 โ€” Configuring Database using Env File Step 3 โ€” Create Model & Migration File For Add … Read more

Target class [PostController] does not exist.

Whenever you got this types of error go to your Route/web.php file and checkout your Controller class is mention there or not. Next Go to PostController file and copy your controller class Now go to Routes/web.php and class this class use App\Http\Controllers\PostController; php artisan serve Now its working properly Thanks.

General error: 1364 Field โ€˜phoneโ€™ doesnโ€™t have a default value

SQLSTATE[HY000]: General error: 1364 Field โ€˜phoneโ€™ doesnโ€™t have a default value (SQL: insert into `products` (`name`, `email`, `address`, `image`, `updated_at`, `created_at`) values (amti, kuam@gmail.com, sdafasdf, 642917381.jpg, 2021โ€“05โ€“11 10:58:35, 2021โ€“05โ€“11 10:58:35)) When Iโ€™m submit form then got General error field doesnโ€™t have default value. letโ€™s go to solve this. ๐Ÿ‘‰ 1 step go to your database and put change … Read more

CRUD Operation Detailed Explaination with Example.

Before performing CRUD operations we need to do some of the basic tasks. These includes:- 1. Installing Laravel 2. Creating Laravel Project 3. Making Model 4. Migrating After that we are good to go for the operation. Explanation for the above operations is given in link below https://www.scmgalaxy.com/tutorials/crud-operation-prerequisites/ 5. Create Operation Create a folder Under … Read more