0

我有一个像这样的简单 Nova 集成:图片

我想以某种方式使该Name领域成为anchor. 因此,以与此相同的方式使其成为链接view button。有任何想法吗?(文档上没有)

4

2 回答 2

2
    Text::make('name')
        ->asHtml()
        ->displayUsing(function ($name) {
            return <a href="route('shops.show', $this->id)">{{$name}}</a>
        })
于 2018-10-30T07:16:01.810 回答
1
Text::make('Name', function () {
    return '<a href="#">'.$this->name.'</a>';
})->asHtml()
于 2018-10-29T15:31:52.680 回答