@extends('apex-layouts.main') @section('title','Users List') @section('header-right') Total:  {{ $users->total() }} Roles @endsection @section('content')
@foreach($users as $user) @endforeach
id Name Email Roles Verified at AlphaRole action
{{$user->id}} {{$user->name}} {{$user->email}} {{ str_replace(',',' || ',$user->roleNames) }} {{$user->email_verified_at}} {{$user->alphaRole}}
@if($users->total() > $users->perPage()) @endif
@endsection