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

Variables in JavaScript

Variables are simply the name of the storage location. There are two ways we define variables more precisely they are known as the scope of the variable. Scope determines the accessibility (visibility) of these variables. they are:- local variable and global variable. When variables are defined inside a function then they cannot be used outside … Read more

AJAX Setup/ Installation

Ajax is a web development technique designed to create highly responsive/ interactive websites. To have a better understanding of AJAX we need to have knowledge of javascript and somewhat XML. The easiest way of implementing AJAX, is by using jQuery. To add jQuery We can use the downloaded version from (jquery.com/download/) and we need to … 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

Registration Form Validation Using Javascript

There are two methods for validating a form Using a keyword “validate” inside the input tag (<input type=”text” name=”userid” placeholder= “User-Id” size=”20″ required />). This Will present output as:- Complete code for the above form is shared below :- Presented output for the above operation :- 2. Using function call we need to define a function that will validate the field data … 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

CRUD Operation Prerequisites.

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 performing the operation. Laravel the most popular PHP-based framework for creating database-driven apps is based on the MVC (Model-View-Controller) architecture … 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

A brief description on Laravel

Laravel is a backend web application framework for PHP. It is a robust framework that provides easy development with many essential features. It provides utilities for application deployment and maintenance. It is a great platform for beginners who wants to implement their PHP skills with greater ease as it has a lot of libraries included. … Read more