/laravuetify

Skeleton project with laravel 5 using vuetifyjs

Primary LanguagePHPMIT LicenseMIT

styleci

Laravuetify

Sample project with Laravel 5.5 and Vuetifyjs 1.0

screenshot

Install

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

Features

  • SPA (except login)
  • authentication
  • multi language (using vuex-i18n)
  • custom error pages

js helpers

    flash('Welcome!','success')
    // displays notifycation snackbar at bottom right.
    
    question('Are you sure?','Yes','No', () => {
       alert('Question anwered.') 
    });
    // fancy confirmation using vuetify dialog

TODO

  • refactoring
  • writing tests
  • finish the docs :D