forgotten search string

This commit is contained in:
batuhanbas 2020-02-21 15:09:43 +03:00
parent a9db9b9cd5
commit 473e0431d2
2 changed files with 12 additions and 7 deletions

View File

@ -21,4 +21,11 @@ const app = new Vue({
mixins: [ mixins: [
Global Global
], ],
data: function () {
return {
form: new Form('transaction'),
}
},
}); });

View File

@ -17,17 +17,15 @@
<div class="card"> <div class="card">
<div class="card-header border-bottom-0"> <div class="card-header border-bottom-0">
{!! Form::open([ {!! Form::open([
'method' => 'GET',
'route' => 'transactions.index', 'route' => 'transactions.index',
'role' => 'form', 'role' => 'form',
'method' => 'GET',
'class' => 'mb-0' 'class' => 'mb-0'
]) !!} ]) !!}
<div class="row"> <akaunting-search
<div class="col-12 d-flex align-items-center"> :placeholder="'{{ trans('general.search_placeholder') }}'"
<span class="font-weight-400 d-none d-lg-block mr-2">{{ trans('general.search') }}:</span> :options="{{ json_encode([]) }}"
<akaunting-search></akaunting-search> ></akaunting-search>
</div>
</div>
{!! Form::close() !!} {!! Form::close() !!}
</div> </div>