@extends('admin.dashboard.layouts.app') @section('title', panel_setting_title("Yönetici Paneli")) @push('style-libraries') @endpush @push('styles') @endpush @section('content')
Toplam Kullanıcı
27
Aktif Kullanıcı
27
{{--Pasif Kullanıcı
0
{{--Bloke Kullanıcı
0
{{--# | {{ __('Ad Soyad') }} | {{ __('İletişim Bilgileri') }} | {{ __('Kayıt Tarihi') }} | {{ __('Durum') }} | {{ __('İşlemler') }} |
---|---|---|---|---|---|
#{{ str_pad($user->id, 5, '0', STR_PAD_LEFT) }} |
{{ mb_convert_case($user->full_name, MB_CASE_TITLE, 'UTF-8') }}
|
{{ $user->email }}
{{ $user->phone }}
|
{{ panel_date_format($user->created_at) }}
{{ panel_time_format($user->created_at) }}
|
@if ($user->status->value == 'active')
Aktif
@elseif($user->status->value == 'deactive')
Pasif
@elseif($user->status->value == 'blocked')
Bloke
@endif
|