@foreach($conversations as $conversation)
  • {{ ucfirst($conversation->title) }} {{ ucfirst($conversation->getStatusName->name) }} {{ ucfirst($conversation->getPriorityName->name) }} # {{ $conversation ? $conversation->id : '' }}

    {{ __('backend/tickets.category-name', ['name' => $conversation->getCategoryName->name]) }}

    {{ __('backend/tickets.opened-by-user') }} {{ $conversation->getUserName ? $conversation->getUserName->silkroad_id : '' }} {!! \Carbon\Carbon::parse($conversation->created_at)->diffForHumans() !!}

  • @endforeach