mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
28 lines
753 B
PHP
28 lines
753 B
PHP
<div class="wa-stack">
|
|
<h1>{{ $user->name }}</h1>
|
|
|
|
<div class="wa-grid">
|
|
|
|
<wa-card>
|
|
<span class="wa-heading-m">
|
|
<wa-format-number value="{{ $user->posts->count() }}"></wa-format-number> {{ Str::plural('post', $user->posts->count()) }}
|
|
</span>
|
|
<span>
|
|
<wa-format-number value="{{ $favorite_posts }}"></wa-format-number> {{ Str::plural('favorite', $favorite_posts) }}
|
|
</span>
|
|
</wa-card>
|
|
|
|
<wa-card>
|
|
<span class="wa-heading-m">
|
|
<wa-format-number value="{{ $user->comments->count() }}"></wa-format-number> {{ Str::plural('comment', $user->comments->count()) }}
|
|
</span>
|
|
</wa-card>
|
|
|
|
<wa-card>
|
|
<span class="wa-heading-m">
|
|
Last seen {{ $user->updated_at->diffForHumans() }}
|
|
</span>
|
|
</wa-card>
|
|
|
|
</div>
|
|
</div>
|