- {!! Former::select('entity_state')
+ {!! Former::select('filter_state')
+ ->label('filter')
->addOption(trans('texts.all'), 'all')
->addOption(trans('texts.stopped'), 'stopped')
- ->addOption(trans('texts.running'), 'running') !!}
+ ->addOption(trans('texts.running'), 'running')
+ ->data_bind('value: filterState') !!}
@@ -237,12 +239,14 @@
->addOption(trans('texts.duration'), 'duration')
->addOption(trans('texts.client'), 'client')
->addOption(trans('texts.project'), 'project')
- ->addOption(trans('texts.description'), 'description') !!}
+ ->addOption(trans('texts.description'), 'description')
+ ->data_bind('value: sortBy') !!}
{!! Former::select('direction')
->addOption(trans('texts.ascending'), 'asc')
- ->addOption(trans('texts.descending'), 'desc') !!}
+ ->addOption(trans('texts.descending'), 'desc')
+ ->data_bind('value: sortDirection') !!}