@extends('layouts.admin') @section('content')

{{ $client->name }} - Users

Manage users for this client

Add User Back to Dashboard

Users

{{ $users->total() }} users found
@forelse ($users as $user) @empty @endforelse
Name Email Role Joined Tier Progress Actions
{{ $user->name }}
{{ $user->email }}
{{ $user->pivot->role_in_client ?? 'User' }}
{{ $user->pivot->created_at->format('M d, Y') }}
@php $tierCompletions = $user->tierCompletions()->pluck('tier_id')->toArray(); @endphp 1 2 3
Edit View
No users found
{{ $users->links() }}
@endsection