如何使用 Voyager Laravel Admin 在 BREAD 浏览模式下显示缩略图
How to display thumbnail in BREAD browse mode with Voyager Laravel Admin
我有一个名称为 Category 的模型,其中有一个字段是 "image_url"(假设它是一张大照片)。如何在 Category 的 BREAD 浏览模式下只显示缩略图?
谢谢!
根据 https://docs.laravelvoyager.com/customization/overriding-files#overriding-bread-views,我最终覆盖了 table 的默认 Voyager 面包视图
.. 对于 1.1 版来说:
You can override any of the BREAD views for a single BREAD by creating
a new folder in resources/views/vendor/voyager/slug-name where
slug-name is the slug that you have assigned for that table. There are
4 files that you can override:
browse.blade.php
edit-add.blade.php
read.blade.php
order.blade.php
Alternatively you can override the views for all BREADs by creating
any of the above files under resources/views/vendor/voyager/bread
.. 我只需要覆盖 'browse' 视图。我还根据 https://docs.laravelvoyager.com/customization/adding-custom-formfields 创建了一个自定义表单域 - 代码刚刚返回了一个 <img>
元素,其中 src url 格式正确。
最后,在自定义 'browse' 视图中,我添加了逻辑来检查新的表单域并返回代码以显示图像。
如果 BREAD 编辑器中有另一个 'Optional Details' 字段用于格式化浏览页面中的显示,那就太好了。
无论如何,希望对您有所帮助,我希望有人能为我指出更直接的方法..
您实际上不需要重写模板即可在浏览模式下显示图像。
在字段设置中,只需添加"show_as_images":true,它就会以浏览模式显示图像。
我有一个名称为 Category 的模型,其中有一个字段是 "image_url"(假设它是一张大照片)。如何在 Category 的 BREAD 浏览模式下只显示缩略图?
谢谢!
根据 https://docs.laravelvoyager.com/customization/overriding-files#overriding-bread-views,我最终覆盖了 table 的默认 Voyager 面包视图 .. 对于 1.1 版来说:
You can override any of the BREAD views for a single BREAD by creating a new folder in resources/views/vendor/voyager/slug-name where slug-name is the slug that you have assigned for that table. There are 4 files that you can override:
browse.blade.php
edit-add.blade.php
read.blade.php
order.blade.php
Alternatively you can override the views for all BREADs by creating any of the above files under resources/views/vendor/voyager/bread
.. 我只需要覆盖 'browse' 视图。我还根据 https://docs.laravelvoyager.com/customization/adding-custom-formfields 创建了一个自定义表单域 - 代码刚刚返回了一个 <img>
元素,其中 src url 格式正确。
最后,在自定义 'browse' 视图中,我添加了逻辑来检查新的表单域并返回代码以显示图像。
如果 BREAD 编辑器中有另一个 'Optional Details' 字段用于格式化浏览页面中的显示,那就太好了。
无论如何,希望对您有所帮助,我希望有人能为我指出更直接的方法..
您实际上不需要重写模板即可在浏览模式下显示图像。
在字段设置中,只需添加"show_as_images":true,它就会以浏览模式显示图像。