codingmonkeys/laravel-nova-inline-boolean

A field which allows booleans to be updated inline.

Installs: 9 057

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 1

Language:Vue

pkg:composer/codingmonkeys/laravel-nova-inline-boolean

0.1.3 2022-07-03 08:05 UTC

This package is auto-updated.

Last update: 2025-09-29 02:44:15 UTC


README

This package provides a field which allows updating booleans inline.

Example:

InlineBoolean::make('active')
    ->sortable()
    ->inlineOnIndex()
    ->showTextOnIndex()
    ->inlineOnDetail()
    ->trueText('Yes')
    ->falseText('No')
    ->enableMessage('The item is activated.')
    ->disableMessage('The item is deactivated.'),