Files

24 lines
710 B
PHP
Raw Permalink Normal View History

2024-12-29 22:16:41 +08:00
@php
$user = filament()->auth()->user();
@endphp
2022-06-27 01:39:01 +08:00
2024-12-29 22:16:41 +08:00
<x-filament-widgets::widget class="fi-account-widget">
<x-filament::section>
2025-09-21 18:07:30 +08:00
<x-filament-panels::avatar.user
size="lg"
:user="$user"
loading="lazy"
/>
2024-12-29 22:16:41 +08:00
2025-09-21 18:07:30 +08:00
<div class="fi-account-widget-main">
<h2 class="fi-account-widget-heading">
{{ __('filament-panels::widgets/account-widget.welcome', ['app' => config('app.name')]) }}
</h2>
2024-12-29 22:16:41 +08:00
2025-09-21 18:07:30 +08:00
<p class="fi-account-widget-user-name">
{{ filament()->getUserName($user) . ' (' . $user->classText . ')' }}
</p>
2022-06-27 01:39:01 +08:00
</div>
2024-12-29 22:16:41 +08:00
</x-filament::section>
</x-filament-widgets::widget>