@extends('layouts.app') @section('title', 'User Management') @section('page-title', 'User Management') @section('page-subtitle', 'Manage all platform users') @section('topbar-actions') Add User @endsection @push('styles') @endpush @section('content') {{-- ── Summary bar ── --}}
| Username | Role | Status | Joined | Last Active | Actions |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($u->name, 0, 1)) }}
{{ $u->name }}
{{ $u->email }}
|
{{-- Role --}}
@php $rc = ['admin'=>'blue','manager'=>'yellow','influencer'=>'purple'][$u->role] ?? 'gray'; @endphp {{ ucfirst($u->role) }} | {{-- Status --}}@if($u->is_approved) Approved @else Pending @endif | {{-- Joined --}}{{ $u->created_at->format('d M Y') }} | {{-- Last Active --}}{{ $u->updated_at->diffForHumans() }} | {{-- Actions --}}|
|
No users found
Try adjusting your search or filters.
|
|||||