Emeric Fèvre

Results 9 comments of Emeric Fèvre

Hey @dereuromark, I'm not maintening my CakePHP plugins anymore, sorry. But since you're a CakePHP team member, if you want, i can add you as a collaborator for my CakePHP...

Hey, You need to add `HasMentionTrait` to your model as mentionned in the readme.

Hello, Yes and no, because the cookies are not stored in clear. They are crypted using the Cookie component. And actually it's not possible to decrypt them if you don't...

Interesting solution, i will let your issue open so when i will got some time, i will work on it. Thanks you !

Hey, I have tested some things about this and i found something interesting. I'm using a Model Pivot like this one : ```php

> @Xety - see comment above. Hey, sorry I was very busy in the last couple of weeks. I will try it soon.

@kirkbushell Hey, sorry for the late reply, I was busy IRL and needed to upgrade to Laravel11 too to test your package, so it required some work. Well, I have...

@kirkbushell With this setup, yes count cache is working with BelongsToMany relationships. No change required if you setup a Pivot model with 2 belongsTo relationships.

@kirkbushell Well yeah, the best way would be to have something like that without Pivot model : ```php #[CountedBy(as: 'part_count')] public function materials(): BelongsToMany { return $this->belongsToMany(Material::class); } #[CountedBy(as: 'material_count')]...