Reputation: 41
In all the static files (css and js) Apache return 404. Then my Laravel looks like this: enter image description here
I tri too with the command:
php artisan serve
and the result is the same.
I using PHP 7.2 and Laravel 6.0.4
Upvotes: 1
Views: 413
Reputation: 3751
After installation of fresh laravel 6
follow these steps-
composer require laravel/ui
php artisan ui vue --auth
npm install
npm run dev
php artisan serve
Authentication support is now added with the help of a package. Please read for more details.
Upvotes: 1