Steve Moretz
Steve Moretz
> @Stevemoretz hello. Thanks for this. I am having issues with dts() as well. Could you please show me an example of your rollup.config.js? I tried to reproduce yours but...
> Thanks a lot for the quickly reply!!! So in my case (sorry to be a pain, is the first time I am setting up a rollup project from scratch...
Hi again. Yeah me too actually I work alone always. I'm using intellij idea and it has the same feature as your VS Code but also has other features to...
> This fix didn't work for me DD the static::$publishGroups And then DD $provider The first one is an array that must have a key like the second one. In...
OK then that explains it, reinstall and try again now and it should work. 😉
So this never got fixed?
I don't understand what could possibly go wrong I changed one line of code only.
Hey. `if ($meta = $this->meta()->where('meta_key',$attribute)->value('meta_value')) {` Here's the code.Could you be more specific? I still don't know what's wrong.
Oh cool thanks for clarification. I guess using the metas like this are not a good idea anyways. My solution does make a lot of queries. The main solution did...
@jakejohns You should change: ``` public function getMeta($attribute) { if ($meta = $this->meta->{$attribute}) { return $meta; } return null; } ``` to ``` public function getMeta($attribute) { if ($meta =...