@php $page = 'users' @endphp @extends('includes.layout') @section('content')

Manage Users

Manage Users

Send Message
@php $counter = 1; @endphp @forelse ($users as $item) @php $counter++; @endphp @empty

No User Found

@endforelse
S/N Name Email Phone Balance Country Status Date Joined Action
{{ $counter }} {{ $item->name }} {{ $item->email }} {{ $item->phone }} ${{ number_format($item->balance, 2) }} {{ $item->country }} {{ Str::ucfirst($item->status) }} {{ $item->created_at->diffForHumans() }} Manage
@endsection @push('scripts') @endpush