For Toggle Switch Field for Nova 3 go to https://github.com/naifalshaye/toggle-switch
- Set custom color using hex color code.
- Toggle in Index and details to update value instead of icons. Default (true).
- Allow multiple toggles in same resource.
- Allow Disabled toggle (readonly) with Gray color.
- PHP 8.0 or higher
- Nova 4
You can install the package into a Laravel app that uses Nova via composer:
composer require naif/toggle-switch-field
Table column migration
$table->boolean('toggle')->default(true);
Add the field to Nova Resource
public function fields(NovaRequest $request)
{
return [
ToggleSwitchField::make('Toggle','toggle')
->color('#3AB95A')
->indexToggle(false)
->detailToggle(false),
];
}
Bug Tracker:
https://github.com/naifalshaye/toggle-switch-field/issues
The MIT License (MIT). Please see License File for more information.