Home > Enterprise >  Is it possible to trigger a Livewire modal component with Bootstrap?
Is it possible to trigger a Livewire modal component with Bootstrap?

Time:02-20

I'm trying to render a modal that gets triggered by a button, so that I can then include payment elements in this modal and allow the user to begin to make payment. However, most Livewire modals I've seen - here, for example - use Livewire events to do the toggling of the model, which both requires adding ugly logic to the view and seems like it would still be slower than anything client-side.

It seems to me like it would be faster to allow Bootstrap to trigger the modal via its own JavaScript (using data-bs-* attributes), and only make use of Livewire when actually loading the content into the modal. Is this approach possible, or do Livewire components have to be loaded via Livewire in order to be populated by it?

CodePudding user response:

Using the LiveWire is logical when you need to exchange information with the server and need to request and respond via HTTP protocol. LiveWire has replaced ajax or something like axios. So it’s better you use a modal bootstrap or any element handled on front and use livewire when you want to do something on the server for example fetch or save data via database. You can use livewire components in any blade as any part of your project.

CodePudding user response:

I use tailwind modals, in theory you could use any modal, the only thing is that you put the wire to each input, look at this example

<div >
                                    <label for="class_name" >Description:</label>
                                    <textarea  id ="step_description" wire:model.defer="step_description"></textarea>
                                </div>
  • Related