2017 © Pedro Peláez
 

library pendaftaran-wizard

Pendaftaran Wizard

image

chemprenx/pendaftaran-wizard

Pendaftaran Wizard

  • Tuesday, May 1, 2018
  • by afri_chemprenx
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • Vue
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

pendaftaran-wizard

Join the chat at https://gitter.im/pendaftaran-wizard/Lobby Scrutinizer Code Quality Build Status Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads, (*1)

Install via composer

  • Development snapshot
$ composer require bantenprov/pendaftaran-wizard:dev-master
  • Latest release:
$ composer require bantenprov/pendaftaran-wizard

Download via github

$ git clone https://github.com/bantenprov/pendaftaran-wizard.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\PendaftaranWizard\PendaftaranWizardServiceProvider::class,

Lakukan auto dump :

$ composer dump-autoload

Lakukan publish component vue :

$ php artisan vendor:publish --tag=pendaftaran-wizard-assets

Tambahkan route di dalam file : resources/assets/js/routes.js :

{
    path: '/admin',
    redirect: '/admin/dashboard/home',
    component: layout('Default'),
    children: [
        //== ...
        {
            path: '/admin/pendaftaran-wizard/create',
            components: {
                main: resolve => require(['./components/bantenprov/pendaftaran-wizard/PendaftaranWizard.add.vue'], resolve),
                navbar: resolve => require(['./components/Navbar.vue'], resolve),
                sidebar: resolve => require(['./components/Sidebar.vue'], resolve)
            },
            meta: {
                title: "Formulir Pendaftaran"
            }
        },

        //== ...
    ]
},

Edit menu resources/assets/js/menu.js

{
    name: 'Admin',
    icon: 'fa fa-lock',
    childType: 'collapse',
    childItem: [
        //== ...
        {
        name: 'Formulir Pendaftaran',
        link: '/admin/pendaftaran-wizard/create',
        icon: 'fa fa-angle-double-right'
        },
        //== ...
    ]
},

Tambahkan components resources/assets/js/components.js :

```javascript //== Pendaftaran Wizard, (*2)

import PendaftaranWizardAdminShow from './components/bantenprov/pendaftaran-wizard/PendaftaranWizardAdmin.show.vue'; Vue.component('admin-view-pendaftaran-wizard-tahun', PendaftaranWizardAdminShow);, (*3)

The Versions

01/05 2018

dev-master

9999999-dev

Pendaftaran Wizard

  Sources   Download

MIT

The Requires

 

by afri