if (self.form.pickupTime == '') {
self.formError.pickupTime = 'Please enter a pickup time that is ready for collection.';
status = false;
return status;
} else {
self.formError.pickupTime = '';
}
I am struggling to translate the message 'please enter a pickup time that is ready for collection'. This code is from a file using Vue and Laravel. I attempted using {{ $t('vue.readytime') }} but encountered errors. Any suggestions?