You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- <dialog id="allguestbook" class="modal">
- <div class="modal-box w-11/12 max-w-5xl">
- <h3 class="text-lg font-bold">Semua Ucapan</h3>
- @foreach ($allguestbooks as $allguestbook)
- <p>{{$allguestbook->name}}</p>
- <p>{{$allguestbook->speech}}</p>
- <hr class="border-t-1 border-gray-300 my-5 w-4/5 self-center ">
- @endforeach
- <div class="modal-action">
- <form method="dialog">
- <button class="btn">Tutup</button>
- </form>
- </div>
- </div>
- </dialog>
|