ronnytorresmtz/date-inline

A Laravel Nova field.

v1.0.16 2021-08-12 15:26 UTC

This package is not auto-updated.

Last update: 2024-04-19 04:54:10 UTC


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();

Resoure Example

Image