Add IP to guestbook admin page
This commit is contained in:
parent
50a8b45625
commit
690ea377fe
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
@section('content')
|
||||
@php
|
||||
$entries = DB::select('
|
||||
SELECT id, name, timestamp, message
|
||||
SELECT id, name, timestamp, message, ip_address
|
||||
FROM guestbook__entries
|
||||
ORDER BY id DESC
|
||||
');
|
||||
|
@ -14,6 +14,7 @@
|
|||
<tr>
|
||||
<td>
|
||||
Name: {{ $entry->name }}<br/>
|
||||
IP: {{ $entry->ip_address }}<br/>
|
||||
Date: {{ gmdate("H:i:s - Y-m-d", $entry->timestamp) }}
|
||||
</td>
|
||||
<td class="gb_del">
|
||||
|
|
Loading…
Reference in a new issue