Ionic Post Laravel

I have a form and i want to post it to my API. I use laravel for my API. how can i post it and how laravel could receive the variable from ionic? is there any reference?

Thanks in advance

this can be easily done by using the same database…
Use the same Firebase database for both your Ionic app and Laravel app.

If you already have a server that expects a form submit, it’s pretty simple, it’s just basic javascript:

const myForm = new FormData();
formData.append('username', 'ionicUser1');
formData.append('password', 'pass123');
this.httpClient.post('www.my-form-submit-url.com', formData);