conditional-container icon indicating copy to clipboard operation
conditional-container copied to clipboard

Add Laravel Nova 4 support

Open dees040 opened this issue 2 years ago • 9 comments

As a reminder I wanted to say that Nova released a new version (v4). Upgrade guide.

dees040 avatar Apr 05 '22 09:04 dees040

plus one for this. Nova 4 has dependent fields but they aren't great for grouping fields like this package works well for.

cwray-tech avatar Apr 06 '22 20:04 cwray-tech

+1

abishekrsrikaanth avatar Apr 15 '22 22:04 abishekrsrikaanth

+1

mateusgalasso avatar Apr 18 '22 21:04 mateusgalasso

I have update some package to support nova4 but seems the maintainer is not active anymore. I will try to update this to support nova4 if the maintainer ok with it

anditsung avatar Apr 18 '22 23:04 anditsung

Hey @anditsung, thanks, haven't got a nova4 license myself yet to be able to understand what changes need to be done...

milewski avatar Apr 19 '22 04:04 milewski

Hey @anditsung, thanks, haven't got a nova4 license myself yet to be able to understand what changes need to be done...

i have check the package... on vue3 the event bus is remove seems need to get other emitter. dont know if the nova4 event cant be use for this

anditsung avatar Apr 19 '22 12:04 anditsung

Hey @anditsung, thanks, haven't got a nova4 license myself yet to be able to understand what changes need to be done...

i have check the package... on vue3 the event bus is remove seems need to get other emitter. dont know if the nova4 event cant be use for this

Like https://vuejs.org/guide/components/events.html ?

mateusgalasso avatar Apr 19 '22 14:04 mateusgalasso

@stonkeep I think what he meant was that that before you could do:

const instance = new Vue()

instance.$on('something', () => {})
instance.$emit('something')

milewski avatar Apr 19 '22 14:04 milewski

seems the problem is here

this.$nextTick(() => this.deepSearch(this.$root.$children))

i can get the parent using this.$parent but cant find the child from parent

anditsung avatar Apr 19 '22 14:04 anditsung