redirect customer to order detail page after creating the order

This commit is contained in:
omair saleh
2021-06-17 14:01:01 +08:00
parent e5fb990371
commit 266a7100b2
@@ -3,7 +3,7 @@
<div class="col-auto">
<button class="btn btn-lg btn-default bg-master-lightest b-rad-none all-caps fs-12" data-dismiss="modal">Cancel</button>
</div>
<div class="col">
<div class="col text-right">
<button class="btn btn-lg btn-success b-rad-none all-caps fs-12" @click="submitForm()">Confirm & Proceed</button>
</div>
</div>
@@ -29,6 +29,10 @@
};
this.submit(route('api.booking.create'), 'post', this.section, true, true)
},
successHandler(response){
window.location.href = this.route('booking.details', response.payload.data.marking)
}
},
mixins: [ModalFormHandler]