belongsTo(Account::class); } /** * Get the template pages associated with the module. * * @return BelongsToMany */ public function templatePages() { return $this->belongsToMany(TemplatePage::class, 'module_template_page')->withTimestamps(); } }