ibnu-ja/jetstream-quasar

Laravel Jetstream Inertia.js + Vite + Vuetify

dev-master 2022-04-05 09:15 UTC

This package is auto-updated.

Last update: 2024-05-05 14:04:37 UTC


README

Introduction

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

Installation

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

Finalizing Installation

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