@extends('layouts.backend.app') @section('title','User Details') @section('content')
| Name: | {{ $user->name }} |
|---|---|
| Email: | {{ $user->email }} |
| Role: | @if ($user->getRoleNames()) {{ str_replace("_", " ", $user->getRoleNames()->implode(', ')) }} @else No role found :( @endif |
| Status: |
@if ($user->status)
Active
@else
Inactive
@endif
|
| Joined At: | {{ $user->created_at->diffForHumans() }} |
| Last Modified At: | {{ $user->updated_at->diffForHumans() }} |
| Last Login At: | {{ $user->last_login_at }} |