1๐
โ
If you are using Laravel below 6.X,
- choose the frontend scaffolding preset with
php artisan preset vue
- install the required npm packages with
npm install
- run the first build to get the frontend looking good with
npm run dev
Or if you are using Laravel 6.X
- get the scaffolders with
composer require laravel/ui
- choose the frontend scaffolding preset with
php artisan ui vue
- install the required npm packages with
npm install
- run the first build to get the frontend looking good with
npm run dev
๐คTaha Paksu
Source:stackexchange.com