@extends('admin.layouts.app') @section('title', 'Users') @section('content')
| User | Role | Orders | Total Spent | Status | Joined | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
@if($user->phone)
{{ $user->phone }}
@endif
|
{{ $user->email }} | {{ ucfirst($user->role) }} | {{ $user->orders_count ?? $user->orders()->count() }} | KSh {{ number_format($user->total_spent, 2) }} | {{ $user->is_active ? 'Active' : 'Inactive' }} | {{ $user->created_at->format('M d, Y') }} | |
| No users found | |||||||