laravel-frontend-presets / vuetify
Laravel 5.5+ Front-end preset for vuetify
Installs: 12 597
Dependents: 0
Suggesters: 0
Security: 0
Stars: 80
Watchers: 11
Forks: 17
Open Issues: 6
Language:HTML
Requires
- laravel/framework: ^5.7
- laravel/passport: ^7.0
README
Sorry no time to mantain this package: if anyone is interested to mantain it please email me at sergiturbadenas at gmail.com
Laravel 5.5+ Frontend preset for Vuetify with Vuex
A Laravel front-end scaffolding preset for Vuetify - a Material Design Component Framework with Vue and Vuex.
Usage
- Fresh install Laravel 5.5+ and cd to your app:
laravel new app && cd app
- Install this preset via
composer require laravel-frontend-presets/vuetify
. Laravel 5.5+ will automatically discover this package. No need to register the service provider. - Use
php artisan preset vuetify
for the basic Vuetify frontend preset OR usephp artisan preset vuetify-auth
for the basic preset auth scaffolding in one go. (NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries inroutes/web.php
) npm install
npm run dev
- Configure your favorite database (mysql, sqlite etc.)
php artisan migrate
to create basic user tables.- This packages requires Laravel Passport. Run
php artisan passport:install
php artisan serve
(or equivalent) to run server and test preset.