@php $customers = \App\Models\Customer::doesntHave('address')->get(); @endphp @if($customers->count() === 0)
{{ __('dashboard.No data') }}
@endif @foreach($customers as $customer)
{{ $customer->name }}
{{ $customer->email }}
@endforeach