Hi! I am building an announcement carousel with alpine. How to dynamically update the "date property" inside the carousel with each slide.
```
<div x-data="{
currentIndex: 0,
announcements: @js($announcements->map(fn($a) => [
'id' => $a->id,
'title' => $a->ti...

Posted by Prawin
3 weeks ago. Last reply
1 week ago.
Hi,
I am struggling with the implementation of data binding using Livewire 3 with Alpine and the TipTap Editor. Tried to implement something similar to this Livewire 2 solution: https://github.com/mattlake/tiptap-livewire-demo
- Editor is initialized / shown
- My initial content is in the editor
-...

Posted by philipp71206
5 months ago. Last reply
1 month ago.
Two weeks ive been trying to solve this one simple problem.
I have simple page that shows list of users. there is also a basic search functionality. All i want to do is console log number of <li> tags after search is performed. The problem is that console is always one step behind and shows the n...
Hi Alex,
I have another small issue that seems to be taking too long to solve, so thought I'd ask if you have any ideas.
On the Trello clone, I've created a top-level category called 'Workspace'. This will hold the boards, so I can essentially have a workspace for each client and have all their bo...
It is easy to preserve scroll forms in Inertia, however within Modals, I found it a bit tricky, is there a trick to do it?
```js
<script setup>
import Modal from '@/Components/Modal.vue'
import { useForm, Head } from '@inertiajs/vue3'
const form = useForm({
name: '',
email: '',
subject...
In the new Laravel version, there's no more Authenticate Middleware to change the route from login to auth.login, any fix to that? Would rather keep the name auth.login :).
For some reason, I keep getting this issue with inertia modals, Could not find a declaration file for module 'momentum-modal'. Any clue?
Regards,
For the past few years, I've managed to override the boot method in the Fortify service provider located at App\Providers\FortifyServiceProvider so that I can define the Fortify Views from my custom service provider that's loaded dynamically from a package.
This all worked perfectly until Laravel 1...
Hello Alex, you upload your videos to vimeo and cannot access these videos from the browser directly. For example we cannot access https://player.vimeo.com/video/1010746273?title=0&byline=0&autoplay=1&dnt=1&app_id=122963 directly.
But when we are a member of your system, we can view the videos. Can...
Hello!
I have a Livewire 3 project where I use simple lightbox js plugin <script src="fslightbox.js"> </script> added before end of the <body> tag. I also have simple filtering on this page and everything works fine when the page is first loaded and after first component update, but stops working a...