Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような単純な Nova 統合があります。
どういうわけかNameフィールドをanchor. それで、それをリンクにするのと同じ方法ですview button。何か案は?(ドキュメントには何もありません)
Name
anchor
view button
Text::make('name') ->asHtml() ->displayUsing(function ($name) { return <a href="route('shops.show', $this->id)">{{$name}}</a> })
Text::make('Name', function () { return '<a href="#">'.$this->name.'</a>'; })->asHtml()