This package is designed using Vuetify to use the power of material desings, in the starter kit for Laravel Jetstream using Inertia scaffolding and replace Laravel Mix with Vite using Laravel Vite presets. Inspired by Jet-Vuetify
Use only with fresh Laravel 8/9 installation
First, use composer to install this package
composer require ibnu-ja/jetstream-quasar
After installing, run artisan command:
php artisan jetstream-quasar:install
or with teams
php artisan jetstream-quasar:install --teams
Install Node dependencies and do database migration
npm install
# or with yarn
yarn install
php artisan migrate
Publish Laravel-Vite configuration
php artisan vendor:publish --tag=vite-config
Then, serve the application
npm run dev
# or with yarn
yarn dev