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.
Error:
message "In order to use the Auth::routes() method, please install the laravel/ui package"Code language: JavaScript (javascript)
I’m switching to Laravel 9 for my project. But when I attempted to launch php artisan, I received an error message.
To use the Auth::routes() method, please install the laravel/ui package.
Code language: PHP (php)
I thus install the package, but I continue to receive the same issue. What could be the issue, and how do I resolve it?
RuntimeException
In order to use the Auth::routes() method, please install the laravel/ui package.Code language: PHP (php)
Solution:
Step 1: (Install Laravel UI)
composer require laravel/uiCode language: JavaScript (javascript)
Step 2: (Generate Auth UI)
php artisan ui bootstrap --auth