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

Yönetim paneline erişebilen kullanıcıları yönetin

Yeni Kullanıcı
@forelse ($users as $user) @empty @endforelse
Ad Soyad E-posta Durum Kayıt Tarihi İşlem
{{ $user->name }} @if ($user->id === auth()->id()) Siz @endif {{ $user->email }} @if ($user->is_active) Aktif @else Pasif @endif {{ $user->created_at?->format('d.m.Y H:i') }} Düzenle @if ($user->id !== auth()->id())
@csrf @method('DELETE')
@endif
Henüz kullanıcı yok.
@if ($users->hasPages()) @endif
@endsection