2024-07-03 12:02:11 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2024-07-06 16:56:09 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
2024-07-03 12:02:11 +00:00
|
|
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
|
|
|
*/
|
|
|
|
|
2024-07-10 15:26:43 +00:00
|
|
|
namespace Modules\MMFRestrictedCustomers\Entities;
|
2024-07-03 12:02:11 +00:00
|
|
|
|
|
|
|
use App\Mailbox as BaseMailbox;
|
|
|
|
|
|
|
|
class Mailbox extends BaseMailbox {
|
|
|
|
/**
|
|
|
|
* Get the Customers that are linked to this Mailbox.
|
|
|
|
*/
|
|
|
|
public function customers() {
|
|
|
|
return $this->hasMany(Customer::class);
|
|
|
|
}
|
|
|
|
}
|