'integer', 'metadata' => 'array', ]; public function business() { return $this->belongsTo(Business::class); } public function user() { return $this->belongsTo(User::class); } public function entity() { return $this->morphTo(__FUNCTION__, 'entity_type', 'entity_id'); } }