@extends('layouts.template') @section('styles') @endsection @section('content')
Detalles del Usuario

{{ mb_strtoupper($user->name) }}

{{ $user->email }}

@foreach ($user->roles as $role)
@php $colors = ['info', 'primary', 'secondary', 'dark', 'success', 'warning', 'danger']; $randomColor = $colors[array_rand($colors)]; @endphp {{ $role->name }}
@endforeach
@endsection