*/ namespace Modules\MMFCustomersGroups\Entities; use Illuminate\Database\Eloquent\Model; class CustomersGroup extends Model { /** * Get the Mailbox this group is linked to. */ public function mailbox() { return $this->belongsTo(Mailbox::class); } /** * Get the Customers that are included in this group. */ public function customers() { return $this->belongsToMany(Customer::class); } }