|
{{ $user->name }}
|
{{ $user->email }} |
@if ($user->email_verified_at)
@else
@endif
|
@if ($user->roles)
@foreach ($user->roles as $role)
{{ $role->name }}
@endforeach
@endif
|
@if ($user->subscriptions())
@foreach ($user->subscriptions()->get() as $subscription)
{{ \Illuminate\Support\Str::of($subscription->type)->snake()->replace('_', ' ')->title() ?? null }}
@endforeach
@endif
|
{{ $user->created_at->format(config('streamline.users.date_format')) }} |
{{ $user->provider }} |
|
@endforeach