@include('admin.header')

CATALOG

MANAGE - CUSTOMERS

Profile Image

    {{$customer->name}}

  • {{$customer->mobile_code}} - {{$customer->mobile_number}}
  • {{$customer->email}}
  • Gender: {{$customer->gender}}
  • DOB: {{$customer->dob}}
  • Full Address : {{$customer->shipping_address}}
    • Country : @if(isset($customer->country)) {{$customer->countries->name}} @endif
    • State : @if(isset($customer->state)) {{$customer->states->name}} @endif
    • City : @if(isset($customer->city)) {{$customer->cities->name}} @endif
    • Zip Code : {{$customer->pin_code}}
  • Registration Date & Time : {{date('d/m/y H:i A',strtotime($customer->registration_date))}}

Order Summary
No. of Orders Delivered Orders Pending Orders Cancelled Orders Billed Amount
{{$data['orders']}} {{$data['delivered_orders']}} {{$data['pending_orders']}} {{$data['cancelled_orders']}} {{$data['amount']}}
@if(isset($customer->shipping) && count($customer->shipping) > 0) @foreach ($customer->shipping as $key=>$shiiping)

Billing Address

{{$customer->billing[$key]->name}}

{{$customer->billing[$key]->address}}

Country: {{$customer->billing[$key]->countries->name}}

City:{{$customer->billing[$key]->cities->name}}

Contact No:{{$customer->billing[$key]->mobile_number}}

Email Id:{{$customer->billing[$key]->email}}

State:{{$customer->billing[$key]->states->name}}

Zip Code:{{$customer->billing[$key]->pincode}}

Pickup & Delivery Address

{{$shiiping->name}}

{{$shiiping->address}}

Country: {{$shiiping->countries->name}}

City:{{$shiiping->cities->name}}

Contact No:{{$shiiping->name}}

Email Id:{{$shiiping->email}}

State:{{$shiiping->states->name}}

Zip Code: {{$shiiping->pincode}}

@endforeach @endif

Change Password

@csrf

Order History

@if(isset($customer->orders) && count($customer->orders) > 0) @foreach ($customer->orders as $order) @endforeach @endif
Date & Time Customer Name Mobile Number & Email ID Order ID Order Value Payment Status Order Status Action
{{date('d/m/y H:i A',strtotime($order->created_at))}} {{ $order->name }} {{ $order->mobile_number }}/{{ $order->email }} {{ $order->order_number}} {{ $order->order_amount_with_shipping }} {{ $order->payment_status }}

Service Booking Details

@if (isset($dataservicesall) && count($dataservicesall) > 0) @foreach ($dataservicesall as $itm) @endforeach @endif
Date & Time Customer Name Mobile Number & Email ID Booking ID Total Cost Payment Status Action
{{date('d/m/y H:i A',strtotime($itm['created_at']))}} {{ $itm['name'] }} {{ $itm['email'] }} /{{ $itm['mobile_number'] }} {{ '#'.$itm['order_number'] }} {{ $itm['order_amount_with_gst'] }} {{ $itm['payment_status'] }}

Loyalty & Rewards

@include('admin.footer')