*/ 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); } }