skip to Main Content

LiveWire & Laravel Component: Html Not SHOW UP

I'm working with Laravel v10 and in my project I tried the following to make a custom component with livewire. I ran: php artisan make:component CounterDisplay created a new file named: resources/views/components/counter-display.blade.php which goes like this: <div> Counter Value: {{…

VIEW QUESTION

Laravel – How to delete data properly?

This is my delete button <!-- Hapus Data --> <button type="button" class="btn btn-danger" data-bs-toggle="modal" data-bs- target="#exampleModal"> Hapus </button> <!-- Modal --> <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel"> Apakah anda yakin…

VIEW QUESTION

AJAX in Laravel Blade ignoring div class

I'm very new at AJAX JavaScript, and i got tast for filtering data in Laravel 10 without refresh using AJAX but no luck yet. This is the code for my blade view : <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> const clickableElements =…

VIEW QUESTION
Back To Top
Search