@forelse($users as $u)
|
@if($u->id !== auth()->id())
@else
@endif
|
{{ $u->email }}
@if(\Illuminate\Support\Str::startsWith($u->email, 'stress_'))
stress
@endif
|
{{ trim(($u->first_name ?? '') . ' ' . ($u->last_name ?? '')) ?: '—' }} |
@foreach($u->roles as $role)
{{ $role->name }}
@endforeach
|
@if($u->email_verified_at)
@else
@endif
|
@if($u->projects_count > 0)
{{ $u->projects_count }}
@else
—
@endif
|
{{ $u->created_at?->format('d/m/Y') ?? '—' }}
{{ $u->created_at?->diffForHumans() ?? '' }}
|
@if($u->last_login_at)
{{ \Carbon\Carbon::parse($u->last_login_at)->format('d/m/Y') }}
{{ \Carbon\Carbon::parse($u->last_login_at)->diffForHumans() }}
@else
Nunca
@endif
|
|
@empty
|
Sin resultados con esos filtros.
@if(request()->hasAny(['q', 'role', 'verified', 'from', 'to', 'last_login']))
Limpiar filtros
@endif
|
@endforelse