Can Laravel Shopping Cart Work with Paypal? - laravel

I wanted to use Laravel Shopping Cart, but I'm not sure how well it works with Paypal.
Does anyone know?
https://github.com/Crinsane/LaravelShoppingcart

I don't see any built in implementation in the core, however you can ask the question in their github repo or check if there are any plugins.
There are many alternatives out there with paypal integration and it's not hard to do it yourself, doing a quick search using your favorite search engine will give you a few suggestions on how to approach this. I personally prefer Stripe because it's even more developer friendly.
If you want to build your own cart, there's even a comprehensive guide on how to do it: Build a Laravel shopping cart

Reading LaravelShoppingCart documentation, it seems this plugin does not manage any payment method, only the cart (Add, remove, total, etc).
If you're interested in payment methods, you should look at Cashier.
Edit : Cashier uses Stripe or Braintree.
Apparently, Stripe cannot work with Paypal, but as Braintree belongs to Paypal, this seems easily doable.

I have implemented on avored laravel full e commerce with admin panel. Give it a try and let me know if you face any bug or any feedback is welcome. As of now it’s in development so it’s not stable yet.
https://github.com/avored

Related

Paypal Standard Payment Option not showing in admin

I want to integrated the paypal standard option to my store, but unfortunately it is not visible on the admin side, Only the Express Checkout is there,
Also checked in the Dropdown of other paypal payment methods but it is empty.
any Idea how to enable it?
Happy to be of any help!
PayPal standard is deprecated a long time ago and it has been removed in all Magento 2.x versions. You can choose the PayPal express checkout option as it is pre-built and easy to configure.
Also, it has got a shortcut button [Cart & Product page] which customers prefer to use.
Thanks.
If you wish to enable PayPal Standard by default on new sites, please add the following code snippet:
add_filter( 'woocommerce_should_load_paypal_standard', '__return_true' );
This is only working on woocommerce in wordpress because Only for new installs with WooCommerce 5.5 and above, PayPal Standard which is included in WooCommerce core will not be loaded by default. Use this in functions.php
For magento read the documentation in magento update by version. Actually for paypal security reasons these changes are applied most of the framworks

Magento: Cannot retrieve payment method instance

I recently started to have the following error when trying to proceed a paypal payment on my magento store:
Cannot retrieve payment method instance.
I have read about it on various websites, and it seems to happened when you create/modify a payment method. However, in my case, it really started happening with no reason at all, as I have not made any changes to my website recently.
I have tried to manually force paypal_standard as method in the sales_flat_order_payment and sales_flat_quote_payment tables, but it did not work.
Paypal express checkout doesn't work anymore neither.
Does anyone have an idea of how to reinstall/reset or something the paypal payment module?
Or to further debug the issue?
(I am not a programmer so I would need quite detailed information)
For anyone having this issue, I have solved it by deleting the /app/code/core folder and replacing it with a vanilla magento one. Most likely the paypal payement system module got corrupted for no reason and replacing it with vanilla version solved the problem.

How to Integrate GSA Smartpay Payment with Magento?

we need to integrate GSA Smartpay (US) payment method with Magento site.
I have checked default admin configuration and any other extension for integration.
How to integrate this payment method with magento?
Is this possible with Magento configuration?
Any help much appreciation.
Thanks!
maybe these links will give you some ideas how to implement this:
http://www.excellencemagentoblog.com/magento-create-custom-payment-method
http://colourgray.wordpress.com/2009/11/11/magento-create-a-custom-payment-method/
And you could also read comments in Mage_Payment_Model_Method_Abstract.
Good luck!

Joomla extension for people posts with categories

Are there any type of extensions that let people post what they want with categories. So they need to sign-up and sign-in, and then create a new post, then select the relative category that the post will be shown in to other people.
I may need to show posts by geo-localisation restriction, for example, posts appears in just US or UK.
I'm a PHP developer. I can achieve this system, but I wondered if it does already exist some CMS like Joomla doing what I need, to save time. I may also be able to develop such Joomla modules if it's allowed. Please need a push around these requirements since I don't have too much experience with Joomla.
I would recommend you use the article section of joomla which is a built in one. I think the things available in joomla package will suit your category, post and signin and signup requirements.
For geo-localisation restrictions I think your php knowledge is more than enough to change or modify few parts of the code in the joomla. I think this way will help you save some time. I have done these before.They have worked fine for me. Hope this helps you.

Paypal payment option disappearing in checkout page in HikaShop

We recently just have our Paypal payment option "disappeared" in checkout page in Hikashop powered joomla site v 1.5 today. Before that it always display fine, and my client confirmed that she played around with the countries setting in the hikashop so I wonder if that is the issue which caused the disappearance of this paypal option?
I look forward to any reply to this question. Answers are greatly appreciated.
It's possible yes. Make sure that you remove the "zone" restriction in your paypal plugin's options.
Also, you can check the FAQ here:
http://www.hikashop.com/en/support/documentation/integrated-documentation/29-hikashop-plugins-listing.html#faq

Resources