|
6 | 6 | @section('title')
|
7 | 7 | <div class="uk-flex uk-flex-between uk-flex-middle">
|
8 | 8 | <h4 class="uk-card-title uk-margin-remove">Tasks</h4>
|
9 |
| - {!! Form::open([ |
10 |
| - 'id' => 'totem__search__form', |
11 |
| - 'url' => Request::fullUrl(), |
12 |
| - 'method' => 'GET', |
13 |
| - 'class' => 'uk-display-inline uk-search uk-search-default' |
14 |
| - ]) !!} |
15 |
| - <span uk-search-icon></span> |
16 |
| - {!! Form::text('q', request('q'), ['class' => 'uk-search-input', 'placeholder' => 'Search...']) !!} |
17 |
| - {!! Form::close() !!} |
| 9 | + <form |
| 10 | + accept-charset="UTF-8" |
| 11 | + method="GET" |
| 12 | + action="{{ request()->fullUrl() }}" |
| 13 | + id="totem__search__form" |
| 14 | + class="uk-display-inline uk-search uk-search-default"> |
| 15 | + <span uk-search-icon></span> |
| 16 | + <input |
| 17 | + value="{{ request('q') }}" |
| 18 | + placeholder="Search..." |
| 19 | + name="q" |
| 20 | + type="text" |
| 21 | + class="uk-search-input"> |
| 22 | + </form> |
18 | 23 | </div>
|
19 | 24 | @stop
|
20 | 25 | @section('main-panel-content')
|
21 | 26 | <table class="uk-table uk-table-responsive" cellpadding="0" cellspacing="0" class="mb1">
|
22 | 27 | <thead>
|
23 | 28 | <tr>
|
24 |
| - <th>{!! Html::columnSort('Description', 'description') !!}</th> |
25 |
| - <th>{!! Html::columnSort('Average Runtime', 'average_runtime') !!}</th> |
26 |
| - <th>{!! Html::columnSort('Last Run', 'last_ran_at') !!}</th> |
| 29 | + <th>{!! \Studio\Totem\Helpers\columnSort('Description', 'description') !!}</th> |
| 30 | + <th>{!! \Studio\Totem\Helpers\columnSort('Average Runtime', 'average_runtime') !!}</th> |
| 31 | + <th>{!! \Studio\Totem\Helpers\columnSort('Last Run', 'last_ran_at') !!}</th> |
27 | 32 | <th>Next Run</th>
|
28 | 33 | <th class="uk-text-center">Execute</th>
|
29 | 34 | </tr>
|
|
0 commit comments