@extends('layouts.admin') @section('title', 'Users') @section('page-title', 'Users') @section('content')
| User | Business | Plan | Status | Storage | Last Seen | Actions |
|---|---|---|---|---|---|---|
|
{{ $user->name }}
{{ $user->email }}
@if($user->phone)
{{ $user->phone }}
@endif
|
{{ $user->business_name ?: 'Not set' }} | {{ ucfirst($user->currentPlan()) }} | {{ $user->is_banned ? 'Banned' : 'Active' }} | {{ number_format(($user->storage_used_bytes ?? 0) / 1048576, 2) }} MB | {{ $user->last_seen_at?->diffForHumans() ?? 'Never' }} |
Open
@if($user->is_banned)
@else
@endif
|
| No users matched the current filters. | ||||||