indralaksmana / modul-hargaberlaku-satudata
This package is one of satudata banten modules
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:module
Requires
- php: >=5.6.4
- illuminate/support: 5.4.*
This package is not auto-updated.
Last update: 2025-05-10 07:55:51 UTC
README
This is one module of Satudata Banten Application
This Package is part of Satudata
Install
Via composer
$ composer require indralaksmana/modul-hargaberlaku-satudata "1.0.0"
1. In your config/app.php add for laravel 5.4:
'providers' => array( ... Satudata\Hargaberlaku\HargaberlakuServiceProvider::class, ),
2. php artisan
$ php artisan satudata:hargaberlaku $ php artisan vendor:publish --tag=views $ php artisan vendor:publish --tag=migrations
in your database/seeds/DatabaseSeeder.php
add this code in run
function
$this->call('MasterKotaSeeder'); $this->command->info('MasterKota table seeded!'); $this->call('MasterProvinsiSeeder'); $this->command->info('MasterProvinsi table seeded!');
in your resources/assets/routes.js
add this code in const routes
const routes = [ .... { path: '/', name: 'list', component: require('./components/PriceList.vue') }, { path: '/create', name: 'create', component: require('./components/PriceCreate.vue') }, .... ]
3. Migrate Database and npm run dev
$ composer dump-autoload $ php artisan migrate --seed $ npm run dev