codingmonkeys / laravel-nova-inline-text
A Laravel Nova field which allows updating texts inline.
Installs: 2 029
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.3|^8.0
- laravel/nova: ^4.11
README
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);
}),