@extends('admin.layout.index') @section('title', 'Müşteriler') @section('content')
@foreach($customers as $key => $customer) @endforeach
Sıra
Ad Soyad
Toplam Siparişler
Kayıt Tarihi
Edit
{{ $key + 1 }} {{ $customer->name }} {{ $customer->surname }} {{ $customer->total_orders }} Adet {{ carbon()::parse($customer->created_at)->format('H:i / d.m.Y') }} Detaylar Engelle
@endsection