ronnytorresmtz/dropdown-inline
Composer 安装命令:
composer require ronnytorresmtz/dropdown-inline
包简介
A Laravel Nova field.
README 文档
README
This package allow you to edit a Dropdown field in the index page with one click
Installation
composer require ronnytorresmtz/dropdown-inline
Usage
Add the field to your resource without edition
public function fields(Request $request) { return [ DropdownInline::make('Start Date') ->options([ 0 => 'Activo', 1 => 'No Activo', ]), ]; }
To edit the Dropdown 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 [ DropdownInline::make('Start Date') ->options([ 0 => 'Activo', 1 => 'No Activo', ]) ->inlineOnIndex(), ]; }
Show the option label instead of the value
public function fields(Request $request) { return [ DropdownInline::make('Start Date') ->options([ 0 => 'Activo', 1 => 'No Activo', ]) ->inlineOnIndex() ->displayUsingLabels(), ]; }
WATCH OUT: This field needs the displayUsingLabels method to be set if not the field does not work well with values.
This method also accepts a closure with the current request if you want to make it editable dynamically:
public function fields() { return [ DropdownInline::make('Start Date') ->options([ 0 => 'Activo', 1 => 'No Activo', ]) ->displayUsingLabels() ->inlineOnIndex(function (NovaRequest $request) { return $request->user()->isAdmin(); }), ]; }
统计信息
- 总下载量: 77
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-08-10