Skip to content

Commit

Permalink
allow clear realisation date
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarzin committed Nov 21, 2023
1 parent 35aef83 commit 797997e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions resources/views/controls/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,14 @@
<strong>{{ trans("cruds.control.fields.plan_date") }}</strong>
</div>
<div class="cell-2">
<input type="text" data-role="calendarpicker" name="plan_date" value="{{$control->plan_date}}"
data-input-format="%Y-%m-%d">
<input type="text" data-role="calendarpicker" name="plan_date" value="{{$control->plan_date}}" data-input-format="%Y-%m-%d">
</div>
<div class="cell-1">
<strong>{{ trans("cruds.control.fields.realisation_date") }}</strong>
</div>
<div class="cell-2">
<input type="text" data-role="calendarpicker" name="realisation_date" value="{{$control->realisation_date}}"
data-input-format="%Y-%m-%d">
<input type="text" data-role="calendarpicker" name="realisation_date" data-clear-button="true"
value="{{$control->realisation_date}}" data-input-format="%Y-%m-%d" />
</div>
</div>

Expand Down

0 comments on commit 797997e

Please sign in to comment.