@extends('layouts.app') @section('title', 'Kullanıcılar') @section('page-title', 'Kullanıcılar') @section('content')

Kullanıcılar

Sistem kullanıcılarını yönetin

Yeni Kullanıcı Oluştur
@forelse($users as $user) @empty @endforelse
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') }}
@if($user->id !== auth()->id())
@csrf @method('DELETE')
@endif

Henüz kullanıcı bulunmuyor

@if($users->hasPages())
{{ $users->links() }}
@endif
@endsection