awesome-nova / tool-actions
v0.2.0
2019-04-24 20:41 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-09-25 09:36:03 UTC
README
安装
您可以使用Composer将此包安装到使用Nova的Laravel应用中
composer require awesome-nova/tool-actions
使用
class AddCommentAction extends ToolAction { public function name() { return 'Add New Comment'; } public function label() { return 'Add comment'; } public function handle(ActionFields $fields) { Comment::create([ 'comment' => $fields->get('comment') ]); } public function fields() { return [ Text::make("Comment")->rules('required') ]; } }