what exactly do you need to validate?
Jun 6, 2020
2
Level 10
How should I validate user stripe input?
I am using stripe as a payment system for my app. What I am wondering is how to validate these input. Did it like normal but is this not necessary because cant find something about validation? I did it like so
$this->validate($request, [
'plan' => 'required|in:price_1Gr4FJJAUy1fGeT4djKb1iHX,price_1Gr4FJJAUy1fGeT4ynylHGhL',
]);
All the tutorials I found there was no validation in place so I am curious how it is done?
Please or to participate in this conversation.