codingmonkeys/laravel-nova-inline-text

A Laravel Nova field which allows updating texts inline.

0.1.7 2022-09-15 10:02 UTC

This package is auto-updated.

Last update: 2024-04-15 13:40:22 UTC


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);
    }),