freescout-customers-groups/Entities/Mailbox.php

19 lines
398 B
PHP
Raw Normal View History

2024-07-16 10:18:43 +00:00
<?php
/*
SPDX-License-Identifier: AGPL-3.0-only
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
*/
namespace Modules\MMFCustomersGroups\Entities;
use App\Mailbox as BaseMailbox;
class Mailbox extends BaseMailbox {
/**
* Get the customers groups linked to this Mailbox.
*/
public function groups() {
return $this->hasMany(CustomersGroup::class);
}
}