{{ __('dashboard.Project') }}
{{ __('dashboard.Owner') }}
{{ __('dashboard.Status') }}
{{ __('dashboard.Updated') }}
@foreach ($rows as $message)
@php
$project = $message->project;
$status = \App\Lab\LabTurnHealth::statusLabel($message, $kind);
@endphp
@if ($project)
{{ $project->title ?: __('dashboard.Untitled') }}
@else
—
@endif
{{ $project?->user?->name ?: __('dashboard.Unassigned') }}
{{ $status }}
{{ $message->updated_at?->diffForHumans() }}
@endforeach