2017 © Pedro Peláez
 

library laravelvueadmin

Laravel admin pannel using Vue.js

image

razzul/laravelvueadmin

Laravel admin pannel using Vue.js

  • Wednesday, July 5, 2017
  • by razzul
  • Repository
  • 2 Watchers
  • 7 Stars
  • 49 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

laravel-vue-admin

Laravel admin pannel using Vue.js, (*1)

alt tag alt tag alt tag, (*2)

STEP 1: composer require "razzul/laravelvueadmin:dev-master"
STEP 2: create gulpfile.js in the root folder
else you will get error while installing, we will fix this later STEP 3: create new db for you application if not created
STEP 4: update .env with database details
STEP 5: update config/database.php
, (*3)

'mysql' => [
    'charset' => 'utf8',
    'collation' => 'utf8_unicode_ci',

STEP 6: register package in config/app.php
, (*4)

...
Razzul\LaravelVueAdmin\LaravelVueAdminServiceProvider::class,

STEP 7: php artisan
if you are getting error here like, (*5)

trait AuthorizesResources not found

You need to remove this trait from app/Http/Controllers/Controller.php
, (*6)

STEP 8: php atrisan lv:install && follow onscreen instructions
STEP 9: update config/database.php
we need to change this to make backup functional, (*7)

'mysql' => [
    'dump_command_path' => 'c:\xampp\mysql\bin',

The Versions