This Laravel Nova package adds an inline text field to Nova's arsenal of fields.
php: >=8.0
laravel/nova: ^4.0
A simple text field that allows the user to edit the value on Index and Detail views in addition to the Form view.
Install the package in to a Laravel app that uses Nova via composer:
composer require outl1ne/nova-inline-text-field
use Outl1ne\NovaInlineTextField\InlineText;
public function fields(Request $request) {
InlineText::make('Name'),
}
Nova Inline Text Field is open-sourced software licensed under the MIT license.