@extends(EcommerceHelper::viewPath('customers.master')) @section('title', __('Address books')) @section('content')
@if ($addresses->isNotEmpty())
@foreach ($addresses as $address) @include(EcommerceHelper::viewPath('customers.address.item'), ['address' => $address]) @endforeach
@endif
{{ __('Add a new address') }}
@endsection