*/ namespace Modules\MMFCustomersGroups\Entities; use App\Customer as BaseCustomer; class Customer extends BaseCustomer { /** * Get the groups this Customer belongs to. */ public function groups() { return $this->belongsToMany(CustomersGroup::class, 'customers_group_customers'); } }