mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-26 16:04:05 +00:00
13 lines
652 B
PHP
13 lines
652 B
PHP
@extends('layouts.base_portal')
|
|
@section('inner_content')
|
|
<div class="row">
|
|
<div class="col">
|
|
<list-component ref="paymentProofList" section="bankStatementSection" :endpoint="route('api.accounting.bank.transaction')" :options="{statement_transaction_account_id: {{$account}}, per_page: 100, order_by: {column: 'posting_date', DESC: true}}">
|
|
<template slot="list" slot-scope="{data}">
|
|
<statement-transaction-component section="bankStatementSection" :data="data"></statement-transaction-component>
|
|
</template>
|
|
</list-component>
|
|
</div>
|
|
</div>
|
|
@endsection
|