@extends('layouts.app') @section('title', 'المستخدمون') @section('content')
| # | الاسم | البريد الإلكتروني | الدور | الهيئة | الحالة | آخر دخول | الإجراءات |
|---|---|---|---|---|---|---|---|
| {{ $user->id }} |
{{ mb_substr($user->name, 0, 1) }}
{{ $user->name }}
|
{{ $user->email }} | @if($user->roles->count() > 0) {{ ucfirst(str_replace('_', ' ', $user->roles->first()->name)) }} @else لا يوجد @endif | @if($user->organization) {{ $user->organization->name }} @else - @endif | @if($user->is_active) نشط @else غير نشط @endif | @if($user->last_login_at) {{ $user->last_login_at->diffForHumans() }} @else - @endif |