@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.ticket.title') }}
@if(session('status')) @endif
{{ trans('cruds.ticket.fields.id') }} {{ $ticket->id }}
{{ trans('cruds.ticket.fields.created_at') }} {{ $ticket->created_at }}
{{ 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 ?? '' }}
{{ trans('cruds.ticket.fields.priority') }} {{ $ticket->priority->name ?? '' }}
{{ trans('cruds.ticket.fields.category') }} {{ $ticket->category->name ?? '' }}
{{ trans('global.back_to_list') }} @lang('global.edit') @lang('cruds.ticket.title_singular')
@endsection