@extends('layouts.frontend-layout') @section('content')
Name : {{ $customer->name }}
Email : {{ $customer->email }}
Phone : {{ $customer->phone }}
Address : {{ $customer->address }}
Name : {{ $customer->billing?$customer->billing->name:"" }}
Email : {{ $customer->billing?$customer->billing->email:"" }}
Phone : {{ $customer->billing?$customer->billing->phone:"" }}
Address : {{ $customer->billing?$customer->billing->address:"" }}
Country : {{ $customer->billing?$customer->billing->country:"" }}
Town/City : {{ $customer->billing?$customer->billing->town_city:"" }}
Zip Code : {{ $customer->billing?$customer->billing->zip_code:"" }}
@elsePlease Go to Manage Billing & Delivery Address Menu For Setup Billing Address
@endifName : {{ $customer->shipping?$customer->shipping->ship_name:"" }}
Email : {{ $customer->shipping?$customer->shipping->ship_email:"" }}
Phone : {{ $customer->shipping?$customer->shipping->ship_phone:"" }}
Address : {{ $customer->shipping?$customer->shipping->ship_address:"" }}
Country : {{ $customer->shipping?$customer->shipping->ship_country:"" }}
Town/City : {{ $customer->shipping?$customer->shipping->ship_town_city:"" }}
Zip Code : {{ $customer->shipping?$customer->shipping->ship_zip_code:"" }}
@elsePlease Go to Manage Billing & Delivery Address Menu For Setup Billing Address
@endif