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

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

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

  • @endforeach