Are you using cartalyst? If not see https://cartalyst.com/manual/stripe-billing-laravel/3.0#preface
Edit:
Whoops, I starting reading more, I didn't know there was a fee for cartalyst. Sorry I thought it was open source.
Nov 13, 2015
10
Level 4
Stripe get and post routes
I've been playing around with stripe today and was following Jeffrey's "billing with stripe" series and I come across something I'm curious about..
If I use "/" in my routes instead of "buy" like Jeff does, the code doesn't work, but if I change the routes to anything other than, it works. Anybody know why this is?
Doesn't work
Route::get('/', 'WelcomeController@index');
Route::post('/', 'WelcomeController@store');
But this works.
Route::get('billing', 'WelcomeController@index');
Route::post('billing', 'WelcomeController@store');
Please or to participate in this conversation.