Sample project with Laravel 5.5 and Vuetifyjs 1.0
git clone git@github.com:defji/laravuetify.git
cd laravuetify
cp .env.example .env
# edit your environment variables in your .env file
composer install
yarn install
php artisan migrate
- SPA (except login)
- authentication
- multi language (using vuex-i18n)
- custom error pages
flash('Welcome!','success')
// displays notifycation snackbar at bottom right.
question('Are you sure?','Yes','No', () => {
alert('Question anwered.')
});
// fancy confirmation using vuetify dialog
- refactoring
- writing tests
- finish the docs :D