@extends('admin.layouts.app') @section('title', 'Users') @section('content')
| # | Name / Email / Role | Current Bonus Points | Lifetime Bonus Points | Status | Action | |
|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($users->firstItem() - 1) }} |
{{ $user->name }}
{{ $user->email }} @if ($role) {{ ucfirst($role->name) }} @endif |
{{ $user->bonus_points }} | {{ $user->lifetime_points }} | @if ($user->is_active) Active @else Inactive @endif |
|
|
| No user found. | ||||||