| Package Data | |
|---|---|
| Maintainer Username: | razzul |
| Maintainer Contact: | developer.rajul@gmail.com (Rajul Mondal) |
| Package Create Date: | 2017-05-31 |
| Package Last Update: | 2017-07-05 |
| Language: | JavaScript |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:23:26 |
| Package Statistics | |
|---|---|
| Total Downloads: | 90 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 10 |
| Total Watchers: | 5 |
| Total Forks: | 5 |
| Total Open Issues: | 0 |
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',