{!! Form::open(['url' => route('booking_detail', [$id]), 'class' => 'form-horizontal']) !!}
{{ Form::textarea('booking_notice', '', array('placeholder'=>__('Neue Notiz hinzufügen …'), 'class'=>'form-control autoExpand', 'id'=>'booking_notice', 'rows'=>'1', 'data-min-rows'=>'1', 'required')) }}
{!! Form::close() !!}
@if($booking->booking_notices)
@foreach($booking->booking_notices as $booking_notice)
@if($booking_notice->from_user_id === \Auth::user()->id)
@else
@endif
{{ $booking_notice->getName() }} | {{ $booking_notice->created_at->format("d.m.Y - H:i:s") }}
{!! nl2br($booking_notice->message) !!}
{{--
You | {{ $booking_notice->created_at->format("d.m.Y H:i:s") }}
{!! nl2br($booking_notice->message) !!}
--}}
@endforeach
@endif