arsenaltech/nova-clickable-row

A Laravel Nova clickable row.

dev-master 2019-04-18 22:29 UTC

This package is auto-updated.

Last update: 2024-03-19 09:36:14 UTC


README

Package that will enable default action on click or double click on resource table rows in Laravel Nova.

Installation

From your project's folder run:

composer require arsenaltech/nova-clickable-row

Customization

By default table rows will respond to single click event and will redirect to View action.

If you want to change single click to double click or redirect to Edit action instead of View then you can do so in your \App\Providers\NovaServiceProvider in boot method:

public function boot()
{
    Nova::serving(function (ServingNova $event) {
        Nova::provideToScript([
            'clickableRow' => [
                'event' => 'dblclick', // click or dblclick
                'action' => 'edit', // view or edit
            ]
        ]);
    });

    parent::boot();
}

License

The MIT License (MIT).