2019-11-16 10:21:14 +03:00
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-12">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2019-11-22 19:09:18 +03:00
|
|
|
<div class="row align-items-center">
|
2019-11-16 10:21:14 +03:00
|
|
|
<div class="col-9">
|
2019-11-20 17:45:19 +03:00
|
|
|
<akaunting-select
|
|
|
|
class="form-control-sm table-header-search mt-0"
|
|
|
|
:placeholder="'{{ trans('general.form.select.field', ['field' => trans_choice('general.categories', 1)]) }}'"
|
|
|
|
:name="'category'"
|
|
|
|
:icon="'folder'"
|
|
|
|
:options="{{ json_encode($categories) }}"
|
|
|
|
:value="'{{ request('category') }}'"
|
|
|
|
@change="onChangeCategory($event)"
|
|
|
|
></akaunting-select>
|
|
|
|
{{ Form::hidden('category_page', url("apps/categories"), ['id' => 'category_page']) }}
|
2019-11-20 17:11:35 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
<a href="{{ route('apps.paid') }}" class="btn btn-sm btn-white card-buttons filter-button ml-2">{{ trans('modules.top_paid') }}</a>
|
|
|
|
<a href="{{ route('apps.new') }}" class="btn btn-sm btn-white card-buttons filter-button">{{ trans('modules.new') }}</a>
|
|
|
|
<a href="{{ route('apps.free') }}" class="btn btn-sm btn-white card-buttons filter-button">{{ trans('modules.top_free') }}</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-3 text-right">
|
|
|
|
{!! Form::open(['route' => ['apps.search'], 'role' => 'form', 'method' => 'GET', 'class' => 'm-0']) !!}
|
|
|
|
<input name="keyword" value="{{ isset($keyword) ? $keyword : '' }}" type="text" class="form-control form-control-sm table-header-search" placeholder="Search Apps">
|
|
|
|
<span class="glyphicon glyphicon-search form-control-feedback"></span>
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|