wamesk/laravel-nova-menu-switcher

There is no license information available for the latest version (1.0.0) of this package.

1.0.0 2024-03-22 13:29 UTC

This package is auto-updated.

Last update: 2024-04-22 13:42:32 UTC


README

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'),
        ...
    ];
});