@extends('layouts.admin') @section('title', 'Users List') @section('content')
| User | Contact Info | Roles | Joined Date | Actions |
|---|---|---|---|---|
|
{{ $user->name }}
|
{{ $user->email }}
@if($user->mobile)
{{ $user->mobile }}
@endif
|
@foreach($user->roles as $role) {{ $role->name }} @endforeach | {{ $user->created_at->format('M d, Y') }} | |
|
No users found matching your criteria. |
||||