@extends('theme::layout.public') @section('seo_title')我的私信 - {{ Setting()->get('website_name') }}@endsection @section('css') @endsection @section('content')

我的私信

@foreach($messages as $message)
{{ $message->fromUser->name }} :
{{ $message->content }}
{{ timestamp_format($message->created_at) }} 查看对话详情 | 删除
@endforeach
{!! str_replace('/?', '?', $messages->render()) !!}
@include('theme::layout.right_menu')
@endsection @section('script') @endsection