@extends('admin.layouts.app') @section('title', 'Müşteriler') @section('header', 'Müşteriler') @section('content')
@forelse($customers as $customer) @empty @endforelse
ID Ad Soyad E-posta Telefon Kayıt Tarihi
{{ $customer->id }}
{{ $customer->first_name }} {{ $customer->last_name }}
@if($customer->phone) {{ $customer->phone }} @endif
{{ $customer->email }} {{ $customer->phone }} {{ $customer->created_at->format('d.m.Y H:i') }}
Henüz müşteri bulunmuyor
@if($customers->hasPages()) @endif
@endsection @push('styles') @endpush