@php $customers = \App\Models\Customer::doesntHave('address')->get(); $invoices = \App\Models\Invoice::where('status', '=', 'created')->orderBy('created_at')->get(); @endphp

{{ __('dashboard.Dashboard') }}

{{ __('dashboard.Customers without address') }}

@foreach($customers as $customer)
{{ $customer->name }}
{{ $customer->email }}
@endforeach

{{ __('dashboard.Invoices not sent') }}

@foreach($invoices as $invoice)
{{ $invoice->number }}
{{ $invoice->address->name }}
@endforeach