change order of the completed orders list to completed date

This commit is contained in:
omair saleh
2021-06-09 13:21:23 +08:00
parent 5095058242
commit 1d2f1cce0a
@@ -11,7 +11,7 @@
</div>
<div class="row">
<div class="col">
<list-component key="2" section="completeBookingsSection" :endpoint="route('api.booking.list')" :options="{per_page: 10, status: 3}">
<list-component key="2" section="completeBookingsSection" :endpoint="route('api.booking.list')" :options="{per_page: 10, status: 3, order_by: {column: 'updated_by', DESC: true}}">
<template slot="list" slot-scope="{data}">
<booking-component :data="data"></booking-component>
</template>