2017 © Pedro Peláez
 

library dashboard-epormas

Epormas dashboard for dashboard pimpinan application

image

bantenprov/dashboard-epormas

Epormas dashboard for dashboard pimpinan application

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 3 Open issues
  • 4 Versions
  • 27 % Grown

The README.md

Dashboard Epormas

Join the chat at https://gitter.im/dashboard-epormas/Lobby Scrutinizer Code Quality Build Status, (*1)

Epormas dashboard repository, (*2)

TO DO :

This Package is part of Dashboard Pimpinan

Install

Via composer ``` bash $ composer require bantenprov/dashboard-epormas:1.0.0, (*3)


## 1. In your config/app.php add for laravel 5.4: ``` php 'providers' => array( ... Bantenprov\DashboardEpormas\EpormasServiceProvider::class, ),

2. php artisan

``` bash $ php artisan dashboard:epormas $ php artisan vendor:publish --tag=views $ php artisan vendor:publish --tag=migrations, (*4)


in your `database/seeds/DatabaseSeeder.php` add this code in `run` function ``` php $this->call('EpormasCounterTableSeeder'); $this->command->info('EpormasCounter table seeded!'); $this->call('EpormasCityTableSeeder'); $this->command->info('EpormasCity table seeded!'); $this->call('EpormasCategoryTableSeeder'); $this->command->info('EpormasCategory table seeded!');

routes.js

in your resources/assets/routes.js add this code in const routes ``` php, (*5)

const routes = [{ path: '/', component: resolve => require(['./layout.vue'], resolve), children: [ ....
{ path: 'dashboard/epormas', component: resolve => require(['./components/dashboard_epormas.vue'], resolve), meta: { title: "Dashboard Epormas", } }, { path: 'epormas', component: resolve => require(['./components/epormas_list.vue'], resolve), meta: { title: "Epormas", } }, { path: 'epormas/create', component: resolve => require(['./components/add_epormas.vue'], resolve), meta: { title: "Epormas", } }, { path: 'epormas/:id/edit', component: resolve => require(['./components/edit_epormas.vue'], resolve), meta: { title: "Epormas", } }, { path: 'epormas/:id/destroy', component: resolve => require(['./components/destroy.vue'], resolve), meta: { title: "Destroy", } }, ....
] ]}, ...., (*6)

#### menu.js

in your `resources/assets/menu.js` add this code
``` php

{
    name: 'Dashboard',
    icon: 'ti-bar-chart',
    child: [
    ....
    {
        name: 'Epormas',
        link: '/dashboard/epormas',
        icon: 'ti-angle-double-right'
    },
    ....
  ]
},
....
{
    name: "Data Epormas",
    icon: "ti-files",
    child: [{
        name: 'list Epormas',
        link: '/epormas',
        icon: 'ti-angle-double-right'
    }]
},
....

3. Migrate Database and npm run dev

bash $ composer dump-autoload $ php artisan migrate --seed $ npm run dev, (*7)

DEMO :

CHANGELOG :

The Versions

10/01 2018

dev-master

9999999-dev

Epormas dashboard for dashboard pimpinan application

  Sources   Download

MIT

The Requires

 

09/01 2018

2.0.x-dev

2.0.9999999.9999999-dev

Epormas dashboard for dashboard pimpinan application

  Sources   Download

MIT

The Requires

 

11/12 2017

1.0.0

1.0.0.0

Epormas dashboard for dashboard pimpinan application

  Sources   Download

MIT

The Requires

 

09/12 2017

1.0.x-dev

1.0.9999999.9999999-dev

Epormas dashboard for dashboard pimpinan application

  Sources   Download

MIT

The Requires