Damir
Damir
> All loop tests pass and that works fine, can you please share a repository that reproduces the issue? I can't find in your test the example of this way...
I check a bit inside code and I understand now why not works compiling page that extend layout. this code: ```php $blade = preg_replace("/@section(?s).*?stop/si", "{{-- section was here --}}", $blade);...
I find a workaround for compile also layouts by keeping yields(). It was easy, but not sure if this can make some issue. I tested and seem works fine. But...
Ops yes right tiptap.dev )) Updated, thanks.
I can make PR if you wish
One thing that is required to archive this is to add a safelist of classes in tailwindconfig.js since it's not found using: ``` {{ $column->responsive }}:table-cell hidden': @js($column->responsive) ``` Like:...
I made a small plugin for handle this, it's pretty easy. Will publish it soon.
The example app is already created or still pending?
Thanks, I will check. I have read in Stripe docs that Stripe Terminal it's supported only in USA / CA. It's that correct?
This seem to work: ```js on: { lazyImageReady: function (swiper, slide, img) { if (img.complete) { swiper.update(); } else { img.addEventListener('load', function () { swiper.update(); }); } } } ```...