@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Show @endsection @section('content')

Show User

Name: {{ $user->name }}
Email: {{ $user->email }}
Roles: @if (!empty($user->getRoleNames())) @foreach ($user->getRoleNames() as $v) @endforeach @endif
@endsection