This commit is contained in:
Frankie B 2023-07-26 00:08:58 +01:00 committed by Frankie B
commit e5c778e7ad
30 changed files with 311 additions and 183 deletions

View file

@ -2,7 +2,7 @@
@section('title', 'Delete confirm')
@section('content')
<h1>Delete Confirmation</h1>
<hr/>
<hr>
<p>Are you sure you want to delete this entry?</p>
<h3>Entry Details:</h3>

View file

@ -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>