@extends('admin.layouts.app') @section('title', 'Müşteriler | Admin') @section('content')

Müşteriler

Kayıt olan müşteri listesi.

@forelse($customers as $customer) @empty @endforelse
ID Ad Soyad E-posta Telefon Kayıt Tarihi İşlem
{{ $customer->id }} {{ $customer->full_name }} {{ $customer->email }} {{ $customer->phone ?? '—' }} {{ $customer->created_at?->format('d.m.Y H:i') }}
Detay
@csrf
Henüz müşteri kaydı yok.
@if($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection