Update
This commit is contained in:
parent
aeb9501237
commit
e5c778e7ad
30 changed files with 311 additions and 183 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue