mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
13 lines
552 B
PHP
13 lines
552 B
PHP
<article class="wa-stack">
|
|
<a class="wa-frame wa-border-radius-l" style="max-inline-size: 15rem;" href="{{ url("/profiles/$user->id") }}" wire:navigate.hover>
|
|
@if (\Illuminate\Support\Facades\Storage::has("avatars/$user->id"))
|
|
<img src="{{ $user->getAvatarBase64() }}"/>
|
|
@else
|
|
<wa-icon name="user"></wa-icon>
|
|
@endif
|
|
</a>
|
|
<div class="wa-stack wa-gap-3xs">
|
|
<span class="wa-heading-s">{{ $user->name }}</span>
|
|
<span class="wa-caption-m">Joined <wa-format-date value="{{ $user->created_at }}"></wa-format-date></span>
|
|
</div>
|
|
</article>
|