@extends('layouts.back') @section('subtitle', __('Users list')) @push('css') @endpush @section('content')
# | @lang('Name') | @lang('Email') | @lang('Role') | @lang('Status') | @lang('Action') |
---|---|---|---|---|---|
{{ $loop->iteration }} |
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}Inscrit {{ $user->created_at?->diffForHumans() ?? 'N/A' }} |
{{ $user->email }} | @if ($user->role_id === 1) Administrateur @else Utilisateur @endif | @if ($user->is_active) Actif @else Bloqué @endif |
@if ($user->id !== auth()->id())
@if ($user->is_active)
@else
@endif
{{-- --}}
@endif
|