Files
larablog/themes/default/views/partials/comment-author.blade.php
T
gouki 3cec4c5e18
CI / PHPUnit (PHP 8.3) (push) Failing after 4s
CI / PHPUnit (PHP 8.2) (push) Failing after 1m9s
CI / Deploy (manual gate) (push) Skipped
wip: article AI polish, category SEO fields, cover generator, membership plan seeder
2026-09-07 18:48:37 +00:00

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