{{-- resources/views/admin/users/index.blade.php --}} @extends('admin.layouts.app') @section('title', 'Users') @section('page_title', 'Users') @section('breadcrumb', 'All property staff and owners') @section('content') {{-- Filter Bar --}}
No users found
Try adjusting your search
| User | Property | Role | Verified | Last Login | Joined | Status | |
|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
|
@if($user->property)
{{ $user->property->name }}
@if($user->is_property_owner)
Owner
@endif
@else
—
@endif
|
{{ str_replace('_', ' ', $user->account_type) }} | @if($user->email_verified_at) @else @endif | {{ $user->last_login_at?->diffForHumans() ?? 'Never' }} | {{ $user->created_at->format('d M Y') }} | @if($user->is_active) Active @else Inactive @endif | View → |