@extends('layouts.app') @section('title', 'Users') @section('page-title', 'User Management') @section('content')
| User | Role | Country | Joined | Status | Actions |
|---|---|---|---|---|---|
|
{{ $user->name }}
{{ $user->email }}
|
{{ ucfirst($user->role) }} | {{ $user->country ?? '—' }} | {{ $user->created_at->format('M j, Y') }} | {{ $user->is_active ? 'Active' : 'Suspended' }} | @if($user->id !== auth()->id()) @endif |
| No users found. | |||||