@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')

Users

Browse and manage registered users.

@forelse(($users ?? collect()) as $u) @empty @endforelse
ID Name Email Status Joined
{{ $u->id }} {{ $u->name ?? '—' }} {{ $u->email ?? '—' }} {{ $u->status ?? 'active' }} {{ $u->created_at?->format('M d, Y H:i') }}
No users found.
@endsection