@php $pageTitle = '个人中心 - '.$siteName; $user = auth()->user(); @endphp @include('partials.head') @include('partials.header')

个人中心

昵称:{{ $user->name }}

邮箱:{{ $user->email }}

@if($user->url)

主页:{{ $user->url }}

@endif

注册时间:{{ $user->created_at?->format('Y-m-d') }}

登录次数:{{ $user->logincount }}

角色:{{ $user->getRoleNames()->implode(', ') ?: '会员' }}

我的文章:{{ $user->posts()->count() }} 篇

我的评论:{{ $user->comments()->count() }} 条

« 返回首页

@include('partials.sidebar')
@include('partials.footer') @stack('theme:body_end')