{{ __('dashboard.Lab') }}

{{ __('dashboard.Every user project, with credits spent on each.') }}

@if ($projects->isEmpty())

{{ filled($search) ? __('dashboard.No results.') : __('dashboard.No Lab projects yet.') }}

@else {{ __('dashboard.Project') }} {{ __('dashboard.Owner') }} {{ __('dashboard.Stack') }} {{ __('dashboard.Credits') }} {{ __('dashboard.Updated') }} @foreach ($projects as $project)

{{ $project->title ?: __('dashboard.Untitled') }}

{{ $project->messages_count }} {{ __('dashboard.Messages') }} @if ($project->isFrozen()) · {{ __('dashboard.Frozen') }} @endif

@if ($project->user)

{{ $project->user->name }}

{{ $project->user->email }}

@else @endif
{{ $project->stack ?: '—' }} {{ number_format((int) $project->credits_spent) }} {{ $project->updated_at?->diffForHumans() }}
@endforeach
@endif