@extends('layouts.admin') @section('title', 'العملاء') @section('content')
@forelse($customers as $customer) @empty@endforelse
الاسمالبريدالهاتفعدد التراخيصتاريخ الإضافة
{{ $customer->name }}{{ $customer->email }}{{ $customer->phone ?: '—' }}{{ $customer->licenses_count }}{{ $customer->created_at->format('Y-m-d') }}
لا يوجد عملاء.
{{ $customers->links() }}
@endsection