From a61e14da4724f7f9831ca168f7b0843954886b93 Mon Sep 17 00:00:00 2001 From: Antoine Le Gonidec Date: Thu, 11 Jul 2024 12:18:24 +0200 Subject: [PATCH] Fix the display of the "no mailbox" warning --- Resources/views/customers/partials/customers_table.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/views/customers/partials/customers_table.blade.php b/Resources/views/customers/partials/customers_table.blade.php index e70eb3c..378f33e 100644 --- a/Resources/views/customers/partials/customers_table.blade.php +++ b/Resources/views/customers/partials/customers_table.blade.php @@ -5,7 +5,7 @@ @foreach ($customers as $customer) - @if ($customer->mailbox == null) + @if ($customer->mailbox_id == null)

{{ __('Warning: no mailbox') }}

@endif

{{ $customer->first_name }} {{ $customer->last_name }}