@extends('admin.layouts') @section('css') @endsection @section('content')
重 置
@foreach($ticketList as $ticket) @endforeach
# 用户名 标题 状态
{{$ticket->id}} @if(!$ticket->user) 【账号已删除】 @else {{$ticket->user->email}} @endif {{$ticket->title}} {!!$ticket->status_label!!}
@endsection @section('script') @endsection