razzul / laravelvueadmin
Laravel admin pannel using Vue.js
Installs: 90
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 6
Forks: 5
Open Issues: 0
Language:JavaScript
Requires
- creativeorange/gravatar: ^1.0
- doctrine/dbal: ~2.3
- illuminate/container: ^5.2|^5.1
- illuminate/support: 5.*
- laravelcollective/html: ^5.2|^5.1
- spatie/laravel-backup: ^3.0.0
- yajra/laravel-datatables-oracle: ~6.0
- zizaco/entrust: 1.7.0
This package is not auto-updated.
Last update: 2024-11-08 23:24:49 UTC
README
Laravel admin pannel using Vue.js
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
'mysql' => [
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
STEP 6: register package in config/app.php
... Razzul\LaravelVueAdmin\LaravelVueAdminServiceProvider::class,
STEP 7: php artisan
if you are getting error here like
trait AuthorizesResources not found
You need to remove this trait from app/Http/Controllers/Controller.php
STEP 8: php atrisan lv:install && follow onscreen instructions
STEP 9: update config/database.php
we need to change this to make backup functional
'mysql' => [
'dump_command_path' => 'c:\xampp\mysql\bin',