```php #[Column('flower_id')] #[ManyToOne(Flower::class, 'me_id')] public int $flowerId = 0; ``` And we can get relation data by: ```php $this->fetchRelation('flowerId'); ```