hasMany('Event\Event\Models\Event_collage'); } /** * The communities that belong to the event. */ public function communities(){ return $this->hasMany('Event\Event\Models\Event_community'); } /** * The invitations that belong to the event. */ public function invitations(){ return $this->hasMany('Event\Event\Models\Event_invitation'); } /** * The leads that belong to the event. */ public function leads(){ return $this->hasMany('Event\Event\Models\Event_lead'); } /** * The schools that belong to the event. */ public function schools(){ return $this->hasMany('Event\Event\Models\Event_school'); } /** * The settings that belong to the event. */ public function settings(){ return $this->hasMany('Event\Event\Models\Event_setting'); } /** * The social_partners that belong to the event. */ public function social_partners(){ return $this->hasMany('Event\Event\Models\Event_social_partner'); } }