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

Creating tables in Migration

In Laravel to create a new database table first of all we need to make a migration which we have explained in the previous blog. I recommend you to read that blog, you can refer the link given below: https://www.scmgalaxy.com/tutorials/explanation-of-database-migrations-in-laravel-5-8/ Once we are done with creating a migration file, to create a new databasetable we … Read more

How Control flow in Laravel

Route::get(‘task’,’TaskController@index’)->name(‘task’); Explanation:- name(‘task‘) is given in the URL as http://127.0.0.1:8000/task. Control flow:- As the URL is hit the control will go the route(web.php), there it will get Route::get(‘task’,’TaskController@index’)->name(‘task’); Here, there will be a name match from the URL and if there is match then there will be a function call named index and route will … Read more

Setup a Laravel Project and Understand the Folder Structure

Setting up a Laravel project is an easy task. We need to have the composer installed in our system. Then we need to download the Laravel installer, the command for installation iscomposer global require “laravel/installer=~1.1”if this does not works then we could just writecomposer global require “laravel/installer”and it would install the file.Then we need to … Read more