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
commite5c778e7ad1c5c924a4977c997288a30261b6888 (patch)
tree32d64a1709d301f5bfdb1eb12db436013135f76a /resources/views/pages/admin/guestbook.blade.php
parentaeb9501237f8fba9b5a00fe0a655dc5d6fa5179e (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>