@extends('layouts.admin') @section('title', 'Customer Aktif - Admin Rental') @section('content')

⭐ Customer Aktif Rental Anda

Customer ranking berdasarkan jumlah booking completed

@forelse ($activeCustomers as $index => $customer) @empty @endforelse
# Nama Customer Email Phone Total Booking Completed Total Transaksi Last Booking Status
{{ $index + 1 }} {{ $customer->name }} {{ $customer->email }} {{ $customer->phone ?? '-' }} {{ $customer->total_booking_count ?? 0 }} {{ $customer->completed_booking_count ?? 0 }} Rp {{ number_format($customer->total_transaction ?? 0, 0, ',', '.') }} {{ $customer->last_booking_date?->format('d M Y') ?? '-' }} @if (($customer->completed_booking_count ?? 0) >= $loyalThreshold) 🏅 Loyal @else Regular @endif
Belum ada data customer aktif

🏅 Loyal Customer: Customer dengan minimal {{ $loyalThreshold }} booking completed

@endsection