From 8e81858470c2b09e22b383e14ee5439cfc4e6e53 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Wed, 26 Jul 2023 00:08:58 +0100 Subject: Update --- resources/views/pages/guestbook.blade.php | 112 +++++++++++++++++------------- 1 file changed, 64 insertions(+), 48 deletions(-) (limited to 'resources/views/pages/guestbook.blade.php') diff --git a/resources/views/pages/guestbook.blade.php b/resources/views/pages/guestbook.blade.php index 4a6fdca..a0112c1 100644 --- a/resources/views/pages/guestbook.blade.php +++ b/resources/views/pages/guestbook.blade.php @@ -1,47 +1,58 @@ @extends('layouts.default') -@section('title', 'guestbook') +@section('title', 'Guestbook') @section('content') -
-
- @csrf - - - - - - - - - - - - - - - -
- - - - - {{ $errors->first('name') }} -
- - - - - {{ $errors->first('message') }} -
- -
- -

A few things to note:

-
    -
  • You can submit an entry once every hour.
  • -
  • Your IP address will be logged but will not be publically displayed.
  • -
  • Any entries that appear to be spam will be removed.
  • -
-
+
+ + + + + +
+
+ @csrf + + + + + + + + + + + + + + + + +
+ + + + + {{ $errors->first('name') }} +
+ + + + + {{ $errors->first('message') }} +
+ +
+ +
+

A few things to note:

+
    +
  • You can submit an entry once every hour.
  • +
  • Your IP address is logged but not publically displayed.
  • +
  • Any entries that appear to be spam will be removed.
  • +
+
+ + +
@php $entries = DB::select(' SELECT name, timestamp, message @@ -51,11 +62,16 @@ @endphp

Entries ({{ count($entries) }} total)

@foreach ($entries as $entry) -
- Name: {{ $entry->name }}
- Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}

- {{ $entry->message }} -
+ + + + +
+ Submitted by {{ $entry->name }} + on {{ gmdate('H:i:s - Y-m-d', $entry->timestamp) }} +
+ {{ $entry->message }} +
+
@endforeach @stop - -- cgit v1.2.3-54-g00ecf