mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-21 21:44:09 +00:00
48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<div class="row d-none" :class="[{'d-flex': $store.getters.isAdmin}]" v-if="$store.getters.isAdmin">
|
|
<div class="col-8">
|
|
<div class="row p-b-5 b-b b-grey m-b-10 m-l-0 m-r-0">
|
|
<div class="col no-padding">
|
|
<h6>Customers List</h6>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0">
|
|
<div class="col">
|
|
<list-component key="2" section="customerListSection" :endpoint="route('api.company.list')" :options="{'has_business_module_type': 1}">
|
|
<template slot="list" slot-scope="{data}">
|
|
<company-component :data="data"></company-component>
|
|
</template>
|
|
</list-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-4">
|
|
<div class="row p-b-5 b-b b-grey m-b-10 m-l-0 m-r-0">
|
|
<div class="col no-padding">
|
|
<h6>Identification Verification</h6>
|
|
</div>
|
|
</div>
|
|
<div class="row no-margin">
|
|
<div class="col">
|
|
<list-component key="2" section="identificationVerificationSection" :options="{'per_page': 5, 'document_type_in': ['SSM_REGISTRATION', 'IDENTITY_CARD'], 'status': 1, 'with_company': true}" :endpoint="route('api.document.list')">
|
|
<template slot="list" slot-scope="{data}">
|
|
<identification-verification-component section="identificationVerificationSection" :data="data"></identification-verification-component>
|
|
</template>
|
|
</list-component>
|
|
</div>
|
|
</div>
|
|
<div class="row p-b-5 b-b b-grey m-b-10 m-l-0 m-r-0">
|
|
<div class="col no-padding">
|
|
<h6>Address Change Verification</h6>
|
|
</div>
|
|
</div>
|
|
<div class="row no-margin">
|
|
<div class="col">
|
|
<list-component key="2" section="addressVerificationSection" :options="{'per_page': 5, 'status': 1, 'with_owner': true}" :endpoint="route('api.address.list')">
|
|
<template slot="list" slot-scope="{data}">
|
|
<address-verification-component section="addressVerificationSection" :data="data"></address-verification-component>
|
|
</template>
|
|
</list-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |