@extends('layouts.admin') @section('title', 'Customers') @section('content')
| Name | Phone | Wallet | Status | Actions | |
|---|---|---|---|---|---|
| {{ $customer->name }} | {{ $customer->phone }} | {{ $customer->email ?? '-' }} | ₹{{ number_format($customer->wallet_balance, 2) }} | {{ ucfirst($customer->status) }} | View @if ($customer->status === 'active') @else @endif |
| No customers found. | |||||