@extends('layouts.admin') @section('title','View All Website Users') @section('styles') @endsection @section('header')
@endsection @section('content')

View Website Users

@if($users) @foreach($users as $user) @endforeach @else

No User Found

@endif
Name Account Balance Status Joined At
Image placeholder
{{$user->name}}
{{$user->account ?? 'Not Found'}} ${{$user->balance + 0 ?? '0'}} @if($user->verified == 0) Not Verified @else Approved @endif {{ date('F jS, Y h:i:s A', strtotime($user->created_at)) }} @if($user->banned == 0) @else @endif
@endsection @section('scripts') @endsection