Skip to content

Commit

Permalink
forgotten search string
Browse files Browse the repository at this point in the history
  • Loading branch information
batuhawk committed Feb 21, 2020
1 parent a9db9b9 commit 473e043
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
7 changes: 7 additions & 0 deletions resources/assets/js/views/banking/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,11 @@ const app = new Vue({
mixins: [
Global
],

data: function () {
return {
form: new Form('transaction'),
}
},

});
12 changes: 5 additions & 7 deletions resources/views/banking/transactions/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,15 @@
<div class="card">
<div class="card-header border-bottom-0">
{!! Form::open([
'method' => 'GET',
'route' => 'transactions.index',
'role' => 'form',
'method' => 'GET',
'class' => 'mb-0'
]) !!}
<div class="row">
<div class="col-12 d-flex align-items-center">
<span class="font-weight-400 d-none d-lg-block mr-2">{{ trans('general.search') }}:</span>
<akaunting-search></akaunting-search>
</div>
</div>
<akaunting-search
:placeholder="'{{ trans('general.search_placeholder') }}'"
:options="{{ json_encode([]) }}"
></akaunting-search>
{!! Form::close() !!}
</div>

Expand Down

0 comments on commit 473e043

Please sign in to comment.