@extends('user.layouts') @section('css') @endsection @section('title', '控制面板') @section('content')
{{$ticket->title}}
@if($ticket->status != 2) @endif
{{$ticket->created_at}}
{!! $ticket->content !!}
@if (!$replyList->isEmpty()) @foreach ($replyList as $reply)
@if ($reply->user->is_admin) @else
@endif
@if($reply->user->is_admin) 管理员 @else @endif {{$reply->created_at}}
{!! $reply->content !!}
@endforeach @endif
@if($ticket->status != 2)
@endif
@endsection @section('script') @endsection