@extends('layouts.app')
@section('title', $user->name . ' - Kullanıcı Detayı')
@section('page-title', $user->name)
@section('content')
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
Düzenle
- E-posta
-
{{ $user->email }}
- Oluşturulma Tarihi
-
{{ $user->created_at->format('d.m.Y H:i') }}
- Atanan Siteler
-
{{ $user->assignedSites()->count() }} site
@if($user->roles->count() > 0)
@foreach($user->roles as $role)
@endforeach
@else
Bu kullanıcıya henüz rol atanmamış.
@endif
@if($user->assignedSites->count() > 0)
Atanan Siteler
@foreach($user->assignedSites as $site)
@endforeach
@endif
@endsection