formatting

This commit is contained in:
denisdulici 2020-05-12 23:47:06 +03:00
parent 0c3e09f424
commit e15473cc7e
3 changed files with 2 additions and 3 deletions

View File

@ -146,7 +146,7 @@ class Tiles extends Controller
] ]
]; ];
$title = trans('modules.search'); $title = trans('general.search');
$modules = $this->getSearchModules($data); $modules = $this->getSearchModules($data);
$installed = Module::all()->pluck('enabled', 'alias')->toArray(); $installed = Module::all()->pluck('enabled', 'alias')->toArray();

View File

@ -9,7 +9,6 @@ return [
'new' => 'New', 'new' => 'New',
'top_free' => 'Top Free', 'top_free' => 'Top Free',
'free' => 'FREE', 'free' => 'FREE',
'search' => 'Search',
'install' => 'Install', 'install' => 'Install',
'buy_now' => 'Buy Now', 'buy_now' => 'Buy Now',
'get_api_key' => '<a href=":url" target="_blank">Click here</a> to get your API key.', 'get_api_key' => '<a href=":url" target="_blank">Click here</a> to get your API key.',

View File

@ -21,7 +21,7 @@
</div> </div>
<div class="col-xs-12 col-sm-3 text-right"> <div class="col-xs-12 col-sm-3 text-right">
{!! Form::open(['route' => 'apps.search', 'role' => 'form', 'method' => 'GET', 'class' => 'm-0']) !!} {!! 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 d-inline-block w-auto" placeholder="Search Apps"> <input name="keyword" value="{{ isset($keyword) ? $keyword : '' }}" type="text" class="form-control form-control-sm d-inline-block w-auto" placeholder="{{ trans('general.search_placeholder') }}">
<span class="glyphicon glyphicon-search form-control-feedback"></span> <span class="glyphicon glyphicon-search form-control-feedback"></span>
{!! Form::close() !!} {!! Form::close() !!}
</div> </div>