@extends('front.app') @section('title', 'My Address') @section('content') @include('customer.dashboard-nav') @include('customer.dashboard-nav-dropdown') My Address {{-- BILLING ADDRESS --}} Billing Address + Add @foreach($billingAddresses as $addr) Billing Edit {{ $addr->name }} {{ $addr->address }}, {{ $addr->cities->name ?? '' }}, {{ $addr->states->name ?? '' }} - {{ $addr->pincode }} {{ $addr->email }} {{ $addr->mobile_number }} @endforeach {{-- SHIPPING ADDRESS --}} Shipping Address + Add @foreach($shippingAddresses as $addr) Shipping Edit {{ $addr->name }} {{ $addr->address }}, {{ $addr->cities->name ?? '' }}, {{ $addr->states->name ?? '' }} - {{ $addr->pincode }} {{ $addr->email }} {{ $addr->mobile_number }} @endforeach @include('customer.address.billing-form') @include('customer.address.shipping-form') @endsection
{{ $addr->address }}, {{ $addr->cities->name ?? '' }}, {{ $addr->states->name ?? '' }} - {{ $addr->pincode }}