Kişiler

Sistemde kayıtlı bireyler

@auth @if (auth()->user()->role === 'admin') + Yeni Kişi Ekle @endif @endauth
@if (session('success'))
{{ session('success') }}
@endif @if ($people->isEmpty())
Sistemde henüz kayıtlı kişi bulunmuyor.
@else
@foreach ($people as $person) @endforeach
ID Ad Soyad Cinsiyet Doğum Tarihi Doğum Yeri Ölüm Tarihi Ölüm Yeri
{{ $person->id }} {{ $person->full_name }} {{ $person->gender ?? '-' }} {{ $person->birth_date?->format('d.m.Y') ?? '-' }} {{ $person->birth_place ?? '-' }} {{ $person->death_date?->format('d.m.Y') ?? '-' }} {{ $person->death_place ?? '-' }}
@endif ← Ana Sayfaya Dön