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 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

How to fix PHP fatal error in Laravel? Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes)

Whenever we type the below displayed command We see the command runs initially good but there comes some problem in few moments. similar to This error is PHP fatal error: and complete display image is What we need to do to remove this ? Folllow the below steps: Close the xampp if its running. got … Read more

How to fix oauth private key does not exist problem in Laravel?

If we get error as Auth private key does not exist on the browser when we run any laravel project . Something similar to Then we just need to install the passport and do the changes to the places where needed. Command to install Passport: Soon after the passport is install we will get the … Read more

How to fix vendor directory not present ?

whenever we run the artisan command to migrate the control looks for the vendor directory and some files inside it. thus if the vendor directory is not present, the command will not get execuited and we will get error. The error which we see looks like :- To overcome this error we need to update … Read more

Built-in/Predefined Methods in JavaScript

In JavaScript, however, a method is a function that belongs to an object. A JavaScript method is a property containing a function definition. There is a long list of Built-in or pre-defined methods in JavaScript Maths Methods in JavaScript min() ->Returns the smallest of zero or more numbers. pow() ->Returns base to the exponent power, that is, base exponent. abs() ->Returns the absolute … Read more

Methods in JavaScript

In JavaScript, however, a method is a function that belongs to an object. A JavaScript method is a property containing a function definition. Few Important things of Methods:- In JavaScript, however, a method is a function that belongs to an object. JavaScript methods are the actions that can be performed on objects. A JavaScript method is a property containing a function definition. Accessing the object method is done with the following syntax: objectName.methodName() Just … Read more

Difference between Function and Method in JavaScript

So what’s the different between the two? Methods have a “receiver” while functions do not. Functions and methods are the same in JavaScript, but a method is a function, which is a property of an object. Syntax for calling/ definition/declaration of functions and methods are different. A function can be called directly by its name … Read more

Predefined Functions in JavaScript

Want to know what is function and how to use them in JavaScript? Just click here. Every computer programming language has functions. Some functions are defined by the programmers while the code is being written while some functions are predefined when the language was built. As every functions have three parts Function Declaration Function Definition. … Read more

A must things to do when we import new databases in any Laravel project.

Whenever we import the database we need to install the passport as it is not able to access the previous client secret. We need to change the new client secret after it is installed in the projects to all the locations required. For generating key we use the following command Then we need to run … Read more

Function in JavaScript

What is a Function in JavaScript A JavaScript function is a block of code designed to perform a particular task. In simple terms, Functions are used to make work easy, reduce the effort of coding multiple lines for the same task which is needed to repeat multiple times. Function Declaration Function Definition. Function Call In … Read more