@extends('layouts.admin') @section('css') @endsection @section('admin')

Super Admin Users

@csrf
@if (request('search')) @endif
@foreach ($users as $user) @endforeach
Full Name Profile ID Phone Number Total BD Total Agency Total Sub Admin Total Direct Seller Total Coin Seller Total Dollar Total Seller Coin Joined Date Actions
{{ $user->name }} {{ $user->user_id }} {{ $user->phone_number }} {{ $user->bd_count ?? 0 }} {{ $user->agency_count ?? 0 }} {{ $user->subadmin_count ?? 0 }} {{ $user->directseller_count ?? 0 }} {{ $user->sub_seller_count ?? 0 }} {{ $user->total_dollar ?? 0 }} {{ $user->seller_coin ?? 0 }} {{ \Carbon\Carbon::parse($user->created_at)->format('Y-m-d') }} {{-- --}}
Showing {{ $users->firstItem() }} to {{ $users->lastItem() }} of {{ $users->total() }} entries
@endsection @section('js') @endsection