@lang("content.list")

{!! Form::open(['method' => 'POST', 'class' => 'form-inline']) !!} @php $counter = 0 @endphp @forelse($user->userHistory as $i => $history) @if ($history->condition) @php $counter++ @endphp @endif @empty @endforelse
No @lang("content.condition") @lang("content.from") @lang("content.to") @lang("content.actions")
{!! Form::label('history', $i+1) !!} {!! Form::select('condition', $conditions, $history->condition_id, ['disabled', 'disabled']) !!} {!! Form::input('text', 'condition_from', date('y-m-d H:i', strtotime($history->condition_from)), ['class' => 'date_format no_borders', 'style' => 'width:120px', 'disabled' => 'disabled']) !!} {!! Form::input('text', 'condition_to', date('y-m-d H:i', strtotime($history->condition_to)), ['class' => 'date_format no_borders', 'style' => 'width:120px', 'disabled' => 'disabled']) !!}
{!! Form::label('history', 1) !!} {!! Form::select('condition', $conditions, null, ['disabled', 'disabled']) !!} {!! Form::input('text', 'condition_from', null, ['class' => 'date_format no_borders', 'style' => 'width:120px', 'disabled' => 'disabled']) !!} {!! Form::input('text', 'condition_to', null, ['class' => 'date_format no_borders', 'style' => 'width:120px', 'disabled' => 'disabled']) !!}
{!! Form::close() !!}