marshmallow / nova-resource-click
This Laravel Nova package package allows you to define the click action on a Nova resource's index row.
Installs: 9 600
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 4
Language:Vue
Requires
- php: ^8.0
- laravel/nova: ^4.0
This package is auto-updated.
Last update: 2023-01-08 22:57:59 UTC
README
This Laravel Nova package allows you to define the click action on a Nova resource's index row.
Requirements
php: >=8.0
laravel/nova: ^4.0
Features
- Define the action of the click on the index page of the Resource Table row
Screenshots
Installation
Install the package in a Laravel Nova project via Composer:
# Install package
composer require marshmallow/nova-resource-click
Config
Publish the config file with
php artisan vendor:publish --provider="Marshmallow\NovaResourceClick\ToolServiceProvider" --tag="config"
This is the default content of the config file:
return [ /** * Default action for all resources when click is applied; */ 'default' => 'view', ];
Usage
When the resource does not have a click action configuratored, the default action will be used: 'view' .
Note: This package extends the default TableResourceRow
component from Laravel Nova. Any other package that overwrites this component may cause this package to break.
Add the row click action to Nova resource
To apply the 'clickAction' on the individual Resource by adding the HasClickAction
trait and adding the $clickAction
variable.
use Marshmallow\NovaResourceClick\Traits\HasClickAction; class MyResource extends Resource { use HasClickAction; public static $clickAction = 'update'; // Options: view, update, select, ignore ... }
Or by using use the additionalInformation
feature:
class MyResource extends Resource { /** * Get meta information about this resource for client side consumption. * * @param \Illuminate\Http\Request $request * @return array<string, mixed> */ public static function additionalInformation(Request $request) { return [ 'clickAction' => 'update' // Options: view, update, select, ignore ]; } ... }
Credits
License
Nova Resource Click is open-sourced software licensed under the MIT license.