aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/admin/guestbook.blade.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-29 18:03:13 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-07-29 18:10:50 +0100
commit8e36d3dcbaf72d4de2b73ed004eb1dfd4c1d6ef2 (patch)
treeab7483cda3af501fc0dfec175dda4983a7b99aad /resources/views/pages/admin/guestbook.blade.php
parent4f50fa52c34eaf6e3a8148a5ccc4d1c9819425f3 (diff)
Merge fixes into v5.5 branch (#12)
--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
Diffstat (limited to 'resources/views/pages/admin/guestbook.blade.php')
-rw-r--r--resources/views/pages/admin/guestbook.blade.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/views/pages/admin/guestbook.blade.php b/resources/views/pages/admin/guestbook.blade.php
index a3b073f..d510910 100644
--- a/resources/views/pages/admin/guestbook.blade.php
+++ b/resources/views/pages/admin/guestbook.blade.php
@@ -10,19 +10,19 @@
@endphp
<h1>Entries <small>({{ count($entries) }} total)</small></h1>
@foreach ($entries as $entry)
- <table class="gb_admin">
+ <table class="gb-admin">
<tr>
<td>
Name:&nbsp;{{ $entry->name }}<br>
IP:&nbsp;&nbsp;&nbsp;{{ $entry->ip_address }}<br>
Date:&nbsp;{{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}
</td>
- <td class="gb_del">
+ <td class="gb-del">
<a href="/admin/guestbook/delete?id={{ $entry->id }}">del</a>
</td>
</tr>
<tr>
- <td colspan="2" class="gb_message">
+ <td colspan="2" class="gb-message">
<br>
{{ htmlspecialchars($entry->message) }}
</td>