URLをDBで値と持って、aタグで出力したい。
### controller
public function test(){
$url ="<a href='https://google.com'>Google</a>";
return view('admin.test', compact('url'));
}
{!! !!}で出力すると、htmlタグも出力できる。
### view
<h1>URL出力テスト</h1>
<p>{{ $url }}</p>
<p>{!! $url !!}</p>

OKでござる。