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