@extends("totem::layout")
@section('page-title')
@parent
- Tasks
@stop
@section('title')
Tasks
{!! Form::open([
'id' => 'totem__search__form',
'url' => Request::fullUrl(),
'method' => 'GET',
'class' => 'uk-display-inline uk-search uk-search-default'
]) !!}
{!! Form::text('q', request('q'), ['class' => 'uk-search-input', 'placeholder' => 'Search...']) !!}
{!! Form::close() !!}
@stop
@section('main-panel-content')
| {!! Html::columnSort('Description', 'description') !!} |
{!! Html::columnSort('Average Runtime', 'average_runtime') !!} |
{!! Html::columnSort('Last Run', 'last_ran_at') !!} |
Next Run |
Execute |
@forelse($tasks as $task)
$task , "force" => 0])}}">
@empty
No Tasks Found.
|
@endforelse
@stop
@section('main-panel-footer')
{{$tasks->links('totem::partials.pagination', ['params' => '&' . http_build_query(array_filter(request()->except('page')))])}}
@stop