@extends('layouts.app') @section('title', 'Kullanıcılar') @section('page-title', 'Kullanıcılar') @section('content')
Sistem kullanıcılarını yönetin
| Kullanıcı | Roller | Atanan Siteler | Oluşturulma | İşlemler |
|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->email }}
|
@forelse($user->roles as $role)
{{ $role->name }}
@empty
Rol yok
@endforelse
|
{{ $user->assignedSites()->count() }} site | {{ $user->created_at->format('d.m.Y') }} | |
|
Henüz kullanıcı bulunmuyor |
||||