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

Laravel 5.8 crud operation “easy way”

Laravel:-Open source web application framework, written in PHP. Step 01 : Install Laravel 5.8 “002” is a project name and 5.8 is a version of Laravel. Step 02 : Update database configuration A : .env B : phymyadmin NOTE:- Same name .env and database. Step 03 : Make mode with -mcr Step 04 : Inside … Read more

How to Uninstall/Remove Package in Laravel?

composer remove VenderName/PackageName – The remove command removes packages from the composer.json file from the current directory. Syntax :- composer remove VenderName/PackageName Syntax:- composer remome VenderName/PackageName1 VenderName/PackageName2 If you want to remove more than one package then you have to run this command. Ex:- composer remove fzaninotto/faker –dev: It remove packages form require-dev This means, … Read more

How to Install/Add-Package in Laravel?

composer require VendorName/PackageName – This command installs a package and any packages that it depends on. syntax example composer require VendorName/PackageName composer require fzaninotto/faler composer require VendorName/PackageName:tag composer require fzaninotto/faker:dev-master composer require VendorName/PackageName:version composer require fzaninotto/faker:1.9.0 –dev: Add packages to require-dev. composer require VendorName/PackageName –dev https://packagist.org/ This is the website, from where you will get … Read more

How to set up a new or existing package?

Manually Creating composer.json file You have to create a composer.joson file and write JSON code yourself with the required properties. composer config –global(-g) – Operate on the global config file located at $COMPOSER_HOME/comfig.json by default. Without this option, this command affects the local composer.json file. composer config –list (-l) __ It shows all the current … Read more

How to Become a Laravel Developer?

In the world of web development, things are constantly changing. On the other hand, developers have to keep pace with the changing technologies, while businesses look for efficient technologies that help them engage with customers efficiently. One technology making major waves in the web development field is Laravel. The framework is a hit among web … Read more

Introduction to Laravel

What is Laravel? Laravel is a web framework built on PHP. That is, the code that has been done has been coded in PHP. You can use it to create High-End Web Applications, you can create the very best web application using Laravel in it. Laravel follows the architectural pattern of MVC (Model View Controller). … Read more

How to Install Composer in Laravel?

Composer requires PHP 8.0+ to run Download Composer exe from official website then install it Use command line installation -May need to set Path or use php composer.phar init Go to the windows search menu and type cmd Open Command Prompt then right click and go to Run as administrator How to Update Composer There … Read more

How do I redirect to another page when clicking a button in Laravel.

Step by Step:- My next page name is “next”. which we are going to link the page through the button. Step1:- Where you are creating the button, put the link in it. Step2:- Then go to web.php(inside routes) and put some commands. Step3:- Then go to home controller.php and write after the index function