Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 7 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
9 | public static function prepare($name, $value = null, $properties = []) |
||
10 | { |
||
11 | return '<div class="input-group date"> |
||
12 | <span class="input-group-addon"><i class="far fa-calendar-alt"></i></span> |
||
13 | '.(\Form::text($name, Input::old($name, $value), $properties['attributes'])).' |
||
14 | </div>'; |
||
15 | } |
||
16 | } |
||
17 |