@extends('layouts.admin') @section('title', 'Customer Management - Orange Groceries Admin') @section('header_title', 'Customer Accounts') @section('content')
| Customer Name | Email & Phone | Orders Placed | Joined Date | Status | Actions |
|---|---|---|---|---|---|
| {{ $cust->name }} |
{{ $cust->email }}
{{ $cust->phone ?? 'No phone' }}
|
{{ $cust->orders_count }} Orders | {{ $cust->created_at->format('d M Y') }} | {{ ucfirst($cust->status) }} |