Skip to content

arsenaltech/nova-clickable-row

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nova Clickable Row

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).

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published