@php($title = 'Admin • Users') @php($heading = 'Users') @php($sidebar = view()->make('dashboard.partials.admin-sidebar')->render()) @extends('layouts.dashboard', compact('title','heading','sidebar')) @section('content')
Browse and manage registered users.
| ID | Name | Status | Joined | |
|---|---|---|---|---|
| {{ $u->id }} | {{ $u->name ?? '—' }} | {{ $u->email ?? '—' }} | {{ $u->status ?? 'active' }} | {{ $u->created_at?->format('M d, Y H:i') }} |
| No users found. | ||||