@extends('layouts.app') @section('content')
| {{ trans('cruds.ticket.fields.author_name') }} | {{ $ticket->author_name }} |
|---|---|
| {{ trans('cruds.ticket.fields.user_no') }} | {{ $ticket->user_no }} |
| {{ trans('cruds.ticket.fields.department') }} | {{ $ticket->department }} |
| Lokasi | {{ $ticket->location }} |
| Tingkat | {{ $ticket->floor }} |
| No. Telefon | {{ $ticket->tel_no }} |
| {{ trans('cruds.ticket.fields.author_email') }} | {{ $ticket->author_email }} |
| {{ trans('cruds.ticket.fields.content') }} | {!! $ticket->content !!} |
| {{ trans('cruds.ticket.fields.title') }} | {{ $ticket->title }} |
| {{ trans('cruds.ticket.fields.attachments') }} | @foreach($ticket->attachments as $attachment) {{ $attachment->file_name }} @endforeach |
| {{ trans('cruds.ticket.fields.status') }} | {{ $ticket->status->name ?? '' }} |