@extends('layouts.yonetim') @section('content')

Kullanıcı Yönetimi

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($kullanicilar as $kullanici) @endforeach
Ad Soyad E-posta Kayıt Tarihi İşlemler
{{ $kullanici->name }} {{ $kullanici->email }} {{ $kullanici->created_at->format('d.m.Y H:i') }} @if(Auth::id() != $kullanici->id)
@csrf
@endif
@endsection