Skip to content

wamesk/laravel-nova-menu-switcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Nova Menu Switcher

Description

Creates input select that refreshes page and sets value to session.

img.png

img_1.png

Installation

composer require wamesk/laravel-nova-menu-switcher

Usage

Nova::mainMenu(function (Request $request) {
    return [
        ...
        Switcher::make([
            'value1' => 'option1',
            'value2' => 'option2',
            'value3' => 'option3',
        ], 'option', 'value2'),
        ...
    ];
});