aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/admin/guestbook.blade.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-26 00:08:58 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-07-29 18:10:50 +0100
commit8e81858470c2b09e22b383e14ee5439cfc4e6e53 (patch)
tree32d64a1709d301f5bfdb1eb12db436013135f76a /resources/views/pages/admin/guestbook.blade.php
parent5a39e2a7962d88fb0fbad0c0dfdc54a1f6c2eddb (diff)
Update
Diffstat (limited to 'resources/views/pages/admin/guestbook.blade.php')
-rw-r--r--resources/views/pages/admin/guestbook.blade.php8
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:&nbsp;{{ $entry->name }}<br/>
- IP:&nbsp;&nbsp;&nbsp;{{ $entry->ip_address }}<br/>
+ 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">
@@ -23,7 +23,7 @@
</tr>
<tr>
<td colspan="2" class="gb_message">
- <br/>
+ <br>
{{ htmlspecialchars($entry->message) }}
</td>
</tr></table>