|
{{ $label }}
@if($sortField === $key)
@if($sortDirection === 'asc')
↑
@else
↓
@endif
@endif
|
@else
Estado
|
@endif
@endif
@endforeach
Acciones |
|---|---|---|
|
@switch($key)
@case('full_name')
@if($user->profile_photo_path)
{{ $user->email }}
@break
@case('phone')
{{ $user->phone ?? 'N/A' }}
@break
@case('access_start')
{{ $user->access_start?->format('d/m/Y') ?? 'N/A' }}
@break
@case('created_at')
{{ $user->created_at->format('d/m/Y H:i') }}
@break
@case('is_active')
{{ $user->is_active ? 'Activo' : 'Inactivo' }}
@break
@default
{{ $user->$key ?? 'N/A' }}
@endswitch
|
@endif
@endforeach