mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 11:27:24 +08:00
f0b50e4826
fix torrent name
24 lines
710 B
PHP
24 lines
710 B
PHP
@php
|
|
$user = filament()->auth()->user();
|
|
@endphp
|
|
|
|
<x-filament-widgets::widget class="fi-account-widget">
|
|
<x-filament::section>
|
|
<x-filament-panels::avatar.user
|
|
size="lg"
|
|
:user="$user"
|
|
loading="lazy"
|
|
/>
|
|
|
|
<div class="fi-account-widget-main">
|
|
<h2 class="fi-account-widget-heading">
|
|
{{ __('filament-panels::widgets/account-widget.welcome', ['app' => config('app.name')]) }}
|
|
</h2>
|
|
|
|
<p class="fi-account-widget-user-name">
|
|
{{ filament()->getUserName($user) . ' (' . $user->classText . ')' }}
|
|
</p>
|
|
</div>
|
|
</x-filament::section>
|
|
</x-filament-widgets::widget>
|