Form action
Filament Forms & Actions: How to open to external URL with new browser tab after a form has been filled
Solution:Jump to solution
```
<script>
document.addEventListener('DOMContentLoaded', function() {
Livewire.on('openInNewTab', url => {
window.open(url, '_blank');...
3 Replies
You probably need to run some JS manually through Livewire. Nothing that Filament supports out of the box.
got it ...doing this by dispatching an event π
Solution