@extends('layouts.app') @section('title', 'Customers') @section('content')
Manage your customer information
| Name | Phone | Location | @if($user->isAdmin())Agent | @endifOrders | Total Spent | Actions | |
|---|---|---|---|---|---|---|---|
|
{{ $customer->name }}
|
{{ $customer->phone }} | {{ $customer->email ?? '-' }} | {{ $customer->city ?? '-' }} | @if($user->isAdmin()){{ $customer->agent_name ?? '-' }} | @endif{{ $customer->total_orders }} | RM {{ number_format($customer->total_spent, 2) }} | Edit @if($customer->total_orders == 0) @endif |