@extends('admin.dashboard.layouts.app') @section('title', panel_setting_title("Yönetici Paneli")) @push('style-libraries') @endpush @push('styles') @endpush @section('content')

Kullanıcılar

Toplam Kullanıcı

27

Aktif Kullanıcı

27

{{--
-0.89%
--}}

Pasif Kullanıcı

0

{{--
Son 7 Günde 0
--}}

Bloke Kullanıcı

0

{{--
Son 7 Günde 0
--}}
@foreach ($users as $user) @endforeach
# {{ __('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
@if ($user->status->value == 'active') @else @endif
{{ $users->links() }}
@endsection @push('script-libraries') @endpush @push('scripts') @endpush