ronnytorresmtz / date-inline
A Laravel Nova field.
Installs: 1 013
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 1
Language:Vue
Requires
- php: >=7.1.0
README
This package allow you to edit a Date field in the index page with one click
Installation
composer require ronnytorres/date-inline
Usage
Add the field to your resource without edition
public function fields(Request $request) { return [ DateInline::make('Start Date'), ]; }
To edit the Date field you need to click it on.
If you press the Esc key
or lost the focues
the field will became not editable.
Add the field to your resource and allow to edit with one click
public function fields(Request $request) { return [ DateInline::make('Start Date') ->inlineOnIndex(), ]; }
The inlineOnIndex
method also accepts a closure with the current request if you want to make it editable dynamically.
public function fields() { return [ InlineText::make('Start Date') ->inlineOnIndex(function (NovaRequest $request) { return $request->user()->isAdmin(); }), ]; }
Show the message 'Date is overdue' at the bottom of the date field
public function fields(Request $request) { return [ DateInline::make('End Date') ->showOverdue(), ]; }
Show a toast message if one date is not greater than other one
public function fields(Request $request) { return [ DateInline::make('Start Date'), DateInline::make('End Date') ->greaterThan('Start Date), ]; }
The date field in your migrations/database must be nullable
$table->date('data_field_name')->nullable();