@foreach($users as $key=> $row)
|
@if (auth()->user()->id != $row->id && $row->id != 1)
@endif
|
{{ $row->name }} |
{{ $row->email }} |
{{ $row->phone }} |
{{ __('users.roles.'.$row->role) }} |
{{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} |
|
@endforeach
@if(count($users) && $users->hasPages())
@endif