treestoneit/belongs-to-field
最新稳定版本:v0.1
Composer 安装命令:
composer require treestoneit/belongs-to-field
包简介
A Laravel Nova Belongs To field that respects Eager Loading
README 文档
README
A Laravel Nova Belongs To field that respects Eager Loading
In current version of Laravel Nova Eager Loading is not working with Default BelongsTo Field
For a temporary workaround that does not break updatability:
We made a new field that extends the existing BelongsTo Class
Installation
Install the package into a Laravel app that uses Nova with Composer:
composer require treestoneit/belongs-to-field
To use
Change all uses of BelongsTo to this BelongsToField.
If a proper fix is available in the future, just change it back to the nova one.
So resulting code resource should look like this:
... use Treestoneit\BelongsToField\BelongsToField; ... ... public function fields(Request $request) { return [ ... BelongsToField::make('User') ... ]; } ... ...
Credits
Thanks to Michael Münch for this solution
统计信息
- 总下载量: 47.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-23