This package is abandoned and no longer maintained. No replacement package was suggested.

Admin template based on Laravel and Fomantic UI

Installs: 7 041

Dependents: 1

Suggesters: 1

Security: 0

Stars: 4

Watchers: 3

Forks: 2

Open Issues: 12

Language:JavaScript


README

Install

1. Register package via composer

$ composer require laravolt/ui

2. Register service provider

...
/*
 * Package Service Providers...
 */
Laravolt\Ui\ServiceProvider::class,
...

3. Link assets

php artisan laravolt:link-assets

SIDEBAR MENU

publish configuration file php artisan vendor:publish --provider='Laravolt\Ui\ServiceProvider' there will be file config/laravolt/menu.php and example menu inside it.

/**
 * Example Menu
 */
'Main Menu' => [
    'menu' => [
        // Menu 1
        'Menu 1' => [
            'data' => [
                'icon' => 'circle outline',
                'permission' => 'read post' // for authorization
            ],
            // Sub Menu 1-*
            'menu' => [
                'Sub Menu 1-1' => ['route' => 'home'],
                'Sub Menu 1-2' => ['url' => '#'],
                'Sub Menu 1-3' => ['url' => '#'],
                ]
            ],
        // Menu 2
        'Menu 2' => ['url' => '#', 'data' => ['icon' => 'circle outline']],
    ]
],

example above will resulted like this

Main Menu
|-- ○ Menu 1
|    |-- Sub Menu 1-1 (route: 'home')
|    |-- Sub Menu 1-2 (url: '#')
|    +-- Sub Menu 1-3 (url: '#')
+-- ○ Menu 2 (url: '#')

add your section title in key of top-level array configuration and add menus or submenus in ['menu' => [ /* add your menus here */] and add data to your menu in ['data' => [/* your key => value pair of data */] ]