diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-26 00:08:58 +0100 |
---|---|---|
committer | Frankie B <frankieraybrown@gmail.com> | 2023-07-29 18:10:50 +0100 |
commit | 8e81858470c2b09e22b383e14ee5439cfc4e6e53 (patch) | |
tree | 32d64a1709d301f5bfdb1eb12db436013135f76a /resources/views/pages/admin/guestbook.blade.php | |
parent | 5a39e2a7962d88fb0fbad0c0dfdc54a1f6c2eddb (diff) |
Update
Diffstat (limited to 'resources/views/pages/admin/guestbook.blade.php')
-rw-r--r-- | resources/views/pages/admin/guestbook.blade.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/pages/admin/guestbook.blade.php b/resources/views/pages/admin/guestbook.blade.php index 1480ea9..a3b073f 100644 --- a/resources/views/pages/admin/guestbook.blade.php +++ b/resources/views/pages/admin/guestbook.blade.php @@ -1,5 +1,5 @@ @extends('layouts.default-admin') -@section('title', 'guestbook') +@section('title', 'Guestbook') @section('content') @php $entries = DB::select(' @@ -13,8 +13,8 @@ <table class="gb_admin"> <tr> <td> - Name: {{ $entry->name }}<br/> - IP: {{ $entry->ip_address }}<br/> + Name: {{ $entry->name }}<br> + IP: {{ $entry->ip_address }}<br> Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }} </td> <td class="gb_del"> @@ -23,7 +23,7 @@ </tr> <tr> <td colspan="2" class="gb_message"> - <br/> + <br> {{ htmlspecialchars($entry->message) }} </td> </tr></table> |