I'm new-ish to Cake. I'm building a site in 2.1 and trying to implement the Stripe payment gateway.
I've found a couple plugins/components but their documentation isn't really clear for me.
Here's one: https://github.com/jeremyharris/stripe/blob/master/README.md
I've added the folder to my plugins folder, loaded the plugin via bootstrap.php, configured the database.php file, and created a new model named Authorize.php with the code in the Readme.
I'm just stuck now, not sure what to do. I added a very basic form to a test page but I'm not sure where to go from here.
Here's my testpayment.ctp in my Pages controller:
echo $this->Form->create('Authorize');
echo $this->Form->input('Card Number');
echo $this->Form->input('Expiration');
echo $this->Form->input('CCV');
echo $this->Form->end('Send');
Any help is VERY appreciated.