@extends('layouts.app') @section('title', 'POS Customers') @section('content')
Walk-in retail customers from POS outlets
| Name | Phone | Registered At | Points | Purchases | Total Spent | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ $customer->name }}
|
{{ $customer->phone }}
|
{{ $customer->email ?? '-' }}
|
{{ $customer->registeredWarehouse->name ?? 'Unknown' }}
|
{{ number_format($customer->loyalty_points) }} pts | {{ number_format($customer->total_purchases) }} | RM {{ number_format($customer->total_spent, 2) }} | View |
Customers will appear here when they make purchases at POS outlets.