@extends('layouts.master') @section('content')

Gästebuch

@foreach ($guestbooks as $guestbook) @endforeach
Datum Name Kommentar Beantwortet? Freigegeben?
{{ $guestbook->created_at->format('d.m.Y - H:i') }} Uhr {{ $guestbook->name }} {{ $guestbook->comment }} @if(!is_null($guestbook->replies))@else @endif
@if($guestbook->is_accepted == 'yes') @else @endif
  • Edit
  • {{ Form::open(array('method' => 'delete', 'route' => array('guestbook.destroy', $guestbook->id))) }} {{ Form::submit('Delete', array('class' => 'button alert tiny')) }} {{ Form::close() }}
{{ $guestbooks->links() }}
@stop @section('js') @parent {{ HTML::script('js/guestbook.js') }} @stop