App Store search issue solved
This commit is contained in:
@ -9,6 +9,7 @@ return [
|
||||
'new' => 'New',
|
||||
'top_free' => 'Top Free',
|
||||
'free' => 'FREE',
|
||||
'search' => 'Search',
|
||||
'install' => 'Install',
|
||||
'buy_now' => 'Buy Now',
|
||||
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">Click here</a> to get your API token.',
|
||||
|
@ -4,15 +4,15 @@
|
||||
|
||||
<div class="pull-left">
|
||||
{!! Form::select('category', $categories, request('category'), ['class' => 'form-control input-sm', 'style' => 'display:inline;width:inherit;']) !!}
|
||||
<a href="{{ url('apps/paid') }}" class="btn btn-sm btn-default btn-flat margin" style="margin-left: 20px;">Top Paid</a>
|
||||
<a href="{{ url('apps/new') }}" class="btn btn-sm btn-default btn-flat margin">New</a>
|
||||
<a href="{{ url('apps/free') }}" class="btn btn-sm btn-default btn-flat margin">Top Free</a>
|
||||
<a href="{{ url('apps/paid') }}" class="btn btn-sm btn-default btn-flat margin" style="margin-left: 20px;">{{ trans('modules.top_paid') }}</a>
|
||||
<a href="{{ url('apps/new') }}" class="btn btn-sm btn-default btn-flat margin">{{ trans('modules.new') }}</a>
|
||||
<a href="{{ url('apps/free') }}" class="btn btn-sm btn-default btn-flat margin">{{ trans('modules.top_free') }}</a>
|
||||
</div>
|
||||
|
||||
<div class="pull-right">
|
||||
<div class="has-feedback">
|
||||
{!! Form::open(['url' => 'apps/search', 'role' => 'form']) !!}
|
||||
<input type="text" class="form-control input-sm" style="margin-top: 10px;" placeholder="Search Apps">
|
||||
{!! Form::open(['url' => 'apps/search', 'role' => 'form', 'method' => 'GET']) !!}
|
||||
<input name="keyword" value="{{ isset($keyword) ? $keyword : '' }}" type="text" class="form-control input-sm" style="margin-top: 10px;" placeholder="Search Apps">
|
||||
<span class="glyphicon glyphicon-search form-control-feedback"></span>
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user