@extends('admin.layouts.admin')
@section('content')
{{ $get_all_users }}
{{ $get_active_users }}
{{ $get_inactive_users }}
{{ $get_banned_users }}
| {{ __('#') }} | {{ __('User') }} | {{ __('Email Status') }} | {{ __('Account Status') }} | {{ __('Registered Date') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $user->id }} | @if ($user->email_verified_at) {{ __('Verified') }} @else {{ __('Unverified') }} @endif | @if ($user->status) {{ __('Active') }} @else {{ __('Banned') }} @endif | {{ toDate($user->created_at) }} |