@extends('layouts.app') @section('title', $user->name . ' 的个人中心') @section('content')

{{ $user->name }} {{ $user->email }}


{{-- 用户发布的内容 --}}
@include('users._topics', ['topics' => $user->topics()->recent()->paginate(5)])
@stop