チェックイン個別ページのユーザープロフィールが半分消えているのを修正

This commit is contained in:
shibafu
2020-10-25 17:22:04 +09:00
parent 41c7679423
commit 076e7d5d0d
4 changed files with 48 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
@if (!empty($user->bio) || !empty($user->url))
<div class="card mb-4">
<div class="card-body">
{{-- Bio --}}
@if (!empty($user->bio))
<p class="card-text mb-0">
{!! Formatter::linkify(nl2br(e($user->bio))) !!}
</p>
@endif
{{-- URL --}}
@if (!empty($user->url))
<p class="card-text d-flex mt-3">
<span class="oi oi-link-intact mr-1 mt-1"></span>
<a href="{{ $user->url }}" rel="me nofollow noopener" target="_blank" class="text-truncate">{{ preg_replace('~\Ahttps?://~', '', $user->url) }}</a>
</p>
@endif
</div>
</div>
@endif