change container list to 5 per page

This commit is contained in:
omair saleh
2021-09-15 18:29:34 +08:00
parent 2be9a3dcfe
commit 4626eb937e
+1 -1
View File
@@ -9,7 +9,7 @@
</div>
</div>
<!-- <list-component section="containerListSection" :endpoint="route('api.packing_list.container.list')"> -->
<list-component section="containerListSection" :endpoint="route('api.packing_list.container.list')" :options="{'with_packing_lists': true, order_by: {column: 'created_at', DESC: true}}">
<list-component section="containerListSection" :endpoint="route('api.packing_list.container.list')" :options="{'per_page': 5, 'with_packing_lists': true, order_by: {column: 'created_at', DESC: true}}">
<template slot="list" slot-scope="{data}">
<container-component :data="data"></container-component>
</template>