change route for booking details

This commit is contained in:
Omair Saleh
2018-12-21 12:15:01 +08:00
parent 30919f2b03
commit 03b4691045
@@ -152,7 +152,7 @@ export default {
methods: {
getBooking(){
let $this = this
axios.get("/"+this.url+"/"+ this.$route.params.userId+"/userBookings").then(response => {
axios.get("/"+this.url+"/"+ this.$route.params.userId).then(response => {
this.bookingTable = response.data.data;
$this.makePagination(response.data);
})