Laravel Nova,更改搜索结果HTML
Laravel Nova, change search results HTML
我有一个像这样的简单 Nova 集成:
我想以某种方式使 Name
字段成为 anchor
。因此,以与 view button
相同的方式使其成为 link。有任何想法吗? (文档上没有任何内容)
Text::make('Name', function () {
return '<a href="#">'.$this->name.'</a>';
})->asHtml()
Text::make('name')
->asHtml()
->displayUsing(function ($name) {
return <a href="route('shops.show', $this->id)">{{$name}}</a>
})
我有一个像这样的简单 Nova 集成:
我想以某种方式使 Name
字段成为 anchor
。因此,以与 view button
相同的方式使其成为 link。有任何想法吗? (文档上没有任何内容)
Text::make('Name', function () {
return '<a href="#">'.$this->name.'</a>';
})->asHtml()
Text::make('name')
->asHtml()
->displayUsing(function ($name) {
return <a href="route('shops.show', $this->id)">{{$name}}</a>
})