@extends('layouts.app') @section('content')
Title | {{ $ticket->title }} |
---|---|
Content | {!! $ticket->content !!} |
Attachments | @foreach($ticket->attachments as $attachment) {{ $attachment->file_name }} @endforeach |
Status | {{ $ticket->status->name ?? '' }} |
Author Name | {{ $ticket->author_name }} |
Author Email | {{ $ticket->author_email }} |
Comments |
@forelse ($ticket->comments as $comment)
{{ $comment->author_name }} ({{ $comment->created_at }}) {{ $comment->comment_text }} @endif @empty There are no comments. |