{{ $user->name }}
{{ $user->email }}
Unique Email
{{ $user->unique_email }}
Role
{{ $user->role === 'user' ? 'Customer' : ucfirst($user->role) }}Credit Balance
{{ $user->credit_balance }}
Max Books
{{ $user->max_books ?? 'Unlimited' }}
Joined
{{ $user->created_at->format('M d, Y') }}
This removes the user from the app (soft delete).
{{ ucfirst(str_replace('_', ' ', $credit->type)) }}
{{ $credit->description }}
{{ $credit->amount > 0 ? '+' : '' }}{{ $credit->amount }}
Balance: {{ $credit->balance_after }}
No credit history