gpt4 book ai didi

laravel - Laravel Nova 中 $title 的多个列名称选择

转载 作者:行者123 更新时间:2023-12-04 14:34:18 25 4
gpt4 key购买 nike

是否可以将多个列名称分组并将它们用作选择 BelongsTo 中的标签/标题,我不想使用 ID 并且没有“名称”字段,例如有问题的表是这样的:

  • 国家
  • 国家
  • 费用

  • 所以下拉菜单应该能够让用户看到这些名字,如:

    美国 |华盛顿 | 50.00 美元

    美国 |加利福尼亚 | 80.00 美元

    美国 |得克萨斯州 | 30.00 美元

    最佳答案

    Documentation says ,您可以覆盖资源的标题方法:

    /**
    * Get the value that should be displayed to represent the resource.
    *
    * @return string
    */
    public function title()
    {
    return $this->name;
    }

    对于某些特定于表单的显示,您可以使用:
    BelongsTo::make('SomeModel', 'somemodel', 'App\Nova\SomeModel')
    ->display(function($someModel){
    return $someModel->id.' wow so custom, much id';
    }),

    关于laravel - Laravel Nova 中 $title 的多个列名称选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55042677/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com