@extends('admin.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('content')

{!! __('admin/customer.address.listing.title') !!} {{__('admin/customer.address.listing.labels.back')}} {{__('admin/customer.address.listing.labels.add-new')}}

@include('admin.shared.table-header', ['model' => $customerAddresses, 'filterAttributes' => $filterAttributes])
@forelse($customerAddresses as $key => $address) @empty @endforelse
{!!__('admin/customer.address.listing.labels.id')!!} {!!__('admin/customer.address.listing.labels.name')!!} {!!__('admin/customer.address.listing.labels.email')!!} {!!__('admin/customer.address.listing.labels.phone')!!} {!!__('admin/customer.address.listing.labels.city')!!} {!!__('admin/customer.address.listing.labels.state')!!} {!!__('admin/customer.address.listing.labels.country')!!} {!!__('admin/customer.address.listing.labels.action')!!}
{{$address->id}} {{$address->name}} {{$address->email}} {{$address->phone}} {{$address->city}} {{$address->state}} {{$address->country}}
@csrf @method('DELETE')
{{__('admin/customer.address.listing.messages.no-records')}}
@include('shared.pagination', ['paginator' => $customerAddresses])
@endsection