9 lines
291 B
PHP
9 lines
291 B
PHP
@php
|
|
$websiteHref = $comment->websiteHref();
|
|
@endphp
|
|
@if($websiteHref)
|
|
<a class="comment__author" href="{{ $websiteHref }}" rel="nofollow noopener noreferrer" target="_blank">{{ $comment->author }}</a>
|
|
@else
|
|
<strong class="comment__author">{{ $comment->author }}</strong>
|
|
@endif
|