-
-
Notifications
You must be signed in to change notification settings - Fork 863
Breaking Changes
Jeff Simons Decena edited this page Mar 17, 2018
·
3 revisions
- As of v1.3.1, payment methods are not available with the user adding it up in the backend. The application is now just using the
.env
variables to handle different API credentials of different payment methods. You just have to set it the.env
like soPAYMENT_METHODS=paypal,stripe,another
and a config file with the same name (eg.config/paypal.php
) to parse it as choices for the payment methods. - Assets (css, js files) are now compiled via Laravel Mix. You need to install node to build and compile the assets. I recommend
nvm
or Node Version Manager so you can have multiple node versions for your projects to use. Get it here