$(document).ready(function(){ // Function to handle Quick View button click $('.quick-view').on('click', function() { var carUnitId = $(this).data('id'); $.ajax({ url: '/get-car-units-detail/' + carUnitId, method: 'GET', success: function(response) { // Memasukkan URL gambar ke dalam elemen HTML var modalContent = '
' + '
' + '
' + 'Car Image' + '
' + '
' + '
' + '
' + '

' + response.name + '

' + '

Price: Rp. ' + response.price + '

' + '
' + '
' + '' + '' + '' + '
' + '
' + '
'; // Memasukkan konten modal ke dalam .modal-body di blade template $('#quick-view-modal .modal-body').html(modalContent); // Menampilkan modal $('#quick-view-modal').modal('show'); }, error: function(xhr, status, error) { console.error(error); alert('Failed to fetch car unit details.'); } }); }); }); //SWEET ALERT LOGOUT