A Laravel Nova field which allows updating texts inline.
codingmonkeys/laravel-nova-inline-text is a Laravel package for a laravel nova field which allows updating texts inline..
It currently has 0 GitHub stars and 2.880 downloads on Packagist (latest version 0.1.7).
Install it with composer require codingmonkeys/laravel-nova-inline-text.
Discover more Laravel packages by codingmonkeys
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel Nova field which allows updating texts inline.
Installation:
composer require codingmonkeys/laravel-nova-inline-text
Example:
InlineText::make('time')
->type('time')
->placeholder('##:##')
->rules('date_format:"H:i"')
->successMessage('The time has been updated!')
->help('hh:mm')
->resolveUsing(function ($value) {
return Str::substr($value, 0, 5);
}),