@extends(Auth::user()->level == "Admin"?'layouts.horizontal':'layouts.horizontal-developer') @section('content')

{{ $data_ticket->subject }}

Tiket

@if(session('success')) @elseif(session('danger')) @endif @if ($errors->has('quantity')) @endif All Tickets @foreach($ticket as $data)
image

{{ $data->user->name }}

{{ $data->user->level }}
{{$data->created_at->diffForHumans()}}

{!! nl2br(htmlentities($data->content)) !!}

@endforeach
@csrf
@endsection