bantenprov / laju-inflasi-menurut-kota
Laju inflasi menurut kota / kabupaten
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 3
Open Issues: 0
Language:Vue
Requires
- php: >=5.6.4
- illuminate/support: 5.4.*
This package is not auto-updated.
Last update: 2024-12-22 07:50:12 UTC
README
Laju Inflasi Menurut Kota
Install via composer
- Development snapshot
$ composer require bantenprov/laju-inflasi-menurut-kota:dev-master
- Latest release:
$ composer require bantenprov/laju-inflasi-menurut-kota
Download via github
$ git clone https://github.com/bantenprov/laju-inflasi-menurut-kota.git
Edit config/app.php
:
'providers' => [ /* * Laravel Framework Service Providers... */ Illuminate\Auth\AuthServiceProvider::class, Illuminate\Broadcasting\BroadcastServiceProvider::class, Illuminate\Bus\BusServiceProvider::class, Illuminate\Cache\CacheServiceProvider::class, Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, Illuminate\Cookie\CookieServiceProvider::class, //.... Bantenprov\LajuInflasiKota\LajuInflasiKotaServiceProvider::class,
Lakukan migrate :
$ php artisan migrate
Publish database seeder :
$ php artisan vendor:publish --tag=laju-inflasi-kota-seeds
Lakukan auto dump :
$ composer dump-autoload
Lakukan seeding :
$ php artisan db:seed --class=BantenprovLajuInflasiKotaSeeder
Lakukan publish component vue :
$ php artisan vendor:publish --tag=laju-inflasi-kota-assets $ php artisan vendor:publish --tag=laju-inflasi-kota-public
Tambahkan route di dalam file : resources/assets/js/routes.js
:
{ path: '/dashboard', redirect: '/dashboard/home', component: layout('Default'), children: [ //== ... { path: '/dashboard/laju-inflasi-kota', components: { main: resolve => require(['./components/views/bantenprov/laju-inflasi-kota/DashboardLajuInflasiKota.vue'], resolve), navbar: resolve => require(['./components/Navbar.vue'], resolve), sidebar: resolve => require(['./components/Sidebar.vue'], resolve) }, meta: { title: "Laju Inflasi Menurut Kota" } }, //== ... ] },
{ path: '/admin', redirect: '/admin/dashboard/home', component: layout('Default'), children: [ //== ... { path: '/admin/laju-inflasi-kota', components: { main: resolve => require(['./components/bantenprov/laju-inflasi-kota/LajuInflasiKota.index.vue'], resolve), navbar: resolve => require(['./components/Navbar.vue'], resolve), sidebar: resolve => require(['./components/Sidebar.vue'], resolve) }, meta: { title: "Laju Inflasi Menurut Kota" } }, { path: '/admin/laju-inflasi-kota/create', components: { main: resolve => require(['./components/bantenprov/laju-inflasi-kota/LajuInflasiKota.add.vue'], resolve), navbar: resolve => require(['./components/Navbar.vue'], resolve), sidebar: resolve => require(['./components/Sidebar.vue'], resolve) }, meta: { title: "Add Laju Inflasi Menurut Kota" } }, { path: '/admin/laju-inflasi-kota/:id', components: { main: resolve => require(['./components/bantenprov/laju-inflasi-kota/LajuInflasiKota.show.vue'], resolve), navbar: resolve => require(['./components/Navbar.vue'], resolve), sidebar: resolve => require(['./components/Sidebar.vue'], resolve) }, meta: { title: "View Laju Inflasi Menurut Kota" } }, { path: '/admin/laju-inflasi-kota/:id/edit', components: { main: resolve => require(['./components/bantenprov/laju-inflasi-kota/LajuInflasiKota.edit.vue'], resolve), navbar: resolve => require(['./components/Navbar.vue'], resolve), sidebar: resolve => require(['./components/Sidebar.vue'], resolve) }, meta: { title: "Edit Laju Inflasi Menurut Kota" } }, //== ... ] },
Edit menu resources/assets/js/menu.js
{ name: 'Dashboard', icon: 'fa fa-dashboard', childType: 'collapse', childItem: [ //== ... { name: 'Laju Inflasi Menurut Kota', link: '/dashboard/laju-inflasi-kota', icon: 'fa fa-angle-double-right' }, //== ... ] },
{ name: 'Admin', icon: 'fa fa-lock', childType: 'collapse', childItem: [ //== ... { name: 'Laju Inflasi Menurut Kota', link: '/admin/laju-inflasi-kota', icon: 'fa fa-angle-double-right' }, //== ... ] },
Tambahkan components resources/assets/js/components.js
:
//== Example Vuetable import ExampleVueTable from './components/vue-table/ExampleVueTable.vue'; Vue.component('example-vue-table', ExampleVueTable); import LajuInflasiKota from './components/bantenprov/laju-inflasi-kota/LajuInflasiKota.chart.vue'; Vue.component('echarts-laju-inflasi-kota', LajuInflasiKota); import LajuInflasiKotaKota from './components/bantenprov/laju-inflasi-kota/LajuInflasiKotaKota.chart.vue'; Vue.component('echarts-laju-inflasi-kota-kota', LajuInflasiKotaKota); import LajuInflasiKotaTahun from './components/bantenprov/laju-inflasi-kota/LajuInflasiKotaTahun.chart.vue'; Vue.component('echarts-laju-inflasi-kota-tahun', LajuInflasiKotaTahun); import LajuInflasiKotaAdminShow from './components/bantenprov/laju-inflasi-kota/LajuInflasiKotaAdmin.show.vue'; Vue.component('admin-view-laju-inflasi-kota-tahun', LajuInflasiKotaAdminShow); //== Echarts Group Egoverment import LajuInflasiKotaBar01 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaBar01.vue'; Vue.component('laju-inflasi-kota-bar-01', LajuInflasiKotaBar01); import LajuInflasiKotaBar02 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaBar02.vue'; Vue.component('laju-inflasi-kota-bar-02', LajuInflasiKotaBar02); //== mini bar charts import LajuInflasiKotaBar03 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaBar03.vue'; Vue.component('laju-inflasi-kota-bar-03', LajuInflasiKotaBar03); import LajuInflasiKotaPie01 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaPie01.vue'; Vue.component('laju-inflasi-kota-pie-01', LajuInflasiKotaPie01); import LajuInflasiKotaPie02 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaPie02.vue'; Vue.component('laju-inflasi-kota-pie-02', LajuInflasiKotaPie02); //== mini pie charts import LajuInflasiKotaPie03 from './components/views/bantenprov/laju-inflasi-kota/LajuInflasiKotaPie03.vue'; Vue.component('laju-inflasi-kota-pie-03', LajuInflasiKotaPie03);