@extends('theme::layout.public') @section('seo_title')发私信给{{ $toUser->name }} - {{ Setting()->get('website_name') }}@endsection @section('content')
发私信给 {{ $toUser->name }} 返回
@foreach($messages as $message)
@if($message->from_user_id == Auth()->user()->id)
我 :
{{ $message->content }}
{{ timestamp_format($message->created_at) }} 删除
@else
{{ $toUser->name }} :
{{ $message->content }}
{{ timestamp_format($message->created_at) }} 删除
@endif
@endforeach
@endsection @section('script') @endsection