@extends('website.layout.layout') @section('title') {{__("Customer profile")}} - @endsection @section('content')
@include('starter-kit::component.err')
{{$ticket->body}} {{$ticket->created_at->diffForHumans()}}
@if(strlen($ticket->answer))
{{config('app.name')}}: {{$ticket->answer}} {{$ticket->updated_at->diffForHumans()}}
@endif @foreach($ticket->subTickets as $t)
{{$t->body}} {{$t->created_at->diffForHumans()}}
@if(strlen($t->answer))
{{config('app.name')}}: {{$t->answer}}
@endif @endforeach
@csrf
@endsection