JulioArkanari's avatar

Using Laravel Jetstream Inertia without Scaffolding

I'd like to use Inertia to use Vue in a Laravel 8 application, but I don't understand if I have to run the scaffolding command to use it. The problem is that this command creates a lot of other files that I don't use, and I would like for it to just create the absolutely necessary functions.

0 likes
3 replies
Stingoosha's avatar

You can try this:

composer create-project laravel/laravel your-project-name
cd your-project-name

composer require laravel/jetstream
php artisan jetstream:install inertia

That will be enough to see all Vue templates inside resources/js

Please or to participate in this conversation.