@extends('layouts.franchise', ['heading' => 'Customers / ग्राहक']) @section('content')
@forelse($customers as $customer)
{{ $customer->member_code }} - {{ $customer->name }}
Mobile: {{ $customer->mobile }}
Orders: {{ $customer->total_orders }} | Total: ₹ {{ number_format((float) $customer->total_spent, 2) }}
Last Visit: {{ $customer->last_visit ? \Illuminate\Support\Carbon::parse($customer->last_visit)->format('d M Y') : '-' }}
@empty
No customers found.
@endforelse
@endsection