Joost Berculo

Results 10 comments of Joost Berculo

I don't see that either, but you could [schedule the artisan command](https://laravel.com/docs/8.x/scheduling#scheduling-artisan-commands) for the specific slug. One could also use this to create an observer that clears the specific cache...

I added the something like this to an observer, and it works: ``` $cache = app()->make(Cache::class); $cache->clear($slug); $cache->forget($slug); ```

Yes I am, removing your package solved the issue. It of course could be something wrong in the nova inline relationships package, but that one is at present dead in...

FYI: It seems that BR portability is getting up to speed: https://github.com/Roave/BetterReflection/issues/701

It probably is due to that te 'find_one_by'-method is not in the Model_Apply_Token class, but from a class that is extended by that class. Did you try to mock the...

I had the same problem, my solution was moving the function call outside of the $( document ).ready()

@isapir True. Maybe it has it's own on document ready? It could not be a real solution, and only be working because of the fact that these files are cached...

I was already using that version, but it does not make a difference in my case.

Thanks @Crashdoom! I tried it again per your instructions, and now it works. Probably would be a good idea to document this somewhere properly, but I now see that it's...

@genesiscz I tried to use your fork, but my HasOne inline now complains about "Too few arguments to function Laravel\\Nova\\Fields\\HasOne::KirschbaumDevelopment\\NovaInlineRelationship\\{closure}(), 0 passed and exactly 1 expected",