aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/admin
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/pages/admin')
-rw-r--r--resources/views/pages/admin/guestbook-del-confirm.blade.php2
-rw-r--r--resources/views/pages/admin/guestbook.blade.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/pages/admin/guestbook-del-confirm.blade.php b/resources/views/pages/admin/guestbook-del-confirm.blade.php
index ebdafd2..7db9e6d 100644
--- a/resources/views/pages/admin/guestbook-del-confirm.blade.php
+++ b/resources/views/pages/admin/guestbook-del-confirm.blade.php
@@ -6,7 +6,7 @@
<p>Are you sure you want to delete this entry?</p>
<h3>Entry Details:</h3>
- <table class="gb_entry_details">
+ <table class="gb-entry_details">
<tr>
<td><b>ID:</b></td>
<td>{{ $entry->id }}</td>
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>