@extends('layouts.app') @section('head')
@endsection @section('breadcrumb')
ПроÑмотр Общего Тикета
Общие Тикеты
ПроÑмотр Общего Тикета
@endsection @section('content')
Дата ÑозданиÑ:
{{ $commonTicket->created_at }}
Тема:
{{ $commonTicket->subject }}
ОпиÑание:
{!! nl2br(htmlspecialchars($commonTicket->description)) !!}
@if($commonTicket->children->isNotEmpty())
ЧаÑтные Тикеты (клиенты):
@foreach($commonTicket->children as $childTicket)
{{ $childTicket->client->name }}
#{{ $childTicket->id }}
@endforeach
@endif
@endsection