skip to Main Content

Modals using HTML and Javascript

I am trying to make 2 modals that are triggered by their corresponding buttons. This is my code: <!-- Trigger/Open The Modal --> <p><button id="seeBtn" type="button">SEE</button></p> <p><button id="hearBtn" type="button">HEAR</button></p> <!-- The Modal --> <div class="modal modal-content" id="seeModal"> <span class="close">&times;</span> <p>See…

VIEW QUESTION

LARAVEL: How to display data from bootstrap modal?

I'm having problems with displaying data from modal. It works outside the modal but inside modal it only iterates 1 data. @foreach ($addresses->sortByDesc('status') as $address) <div class="col"> <div class="row g-0 flex-column">{{-- EDIT --}} <div class="col-12 col-lg-8 col-xl-7 col-xxl-5 d-flex justify-content-between">…

VIEW QUESTION
Back To Top
Search