Bitcoin implementation with laravel

9.4k Views Asked by At

I am new in Laravel. I have to use Bitcoin for checkout page. Can anybody help me how to integrate Bitcoin in laravel framework.

3

There are 3 best solutions below

0
On

As far as I am aware, there is no library setup for Bitcoin payment processing in Laravel, however the API for Coinbase (https://www.coinbase.com/docs/api/overview) is pretty decent, and shouldn't be too hard to implement yourself.

1
On

The Blocktrail PHP SDK works with Laravel, in fact there's an example project to get you started: Simple Block Explorer

Their API supports payments and webhooks as well as plain blockchain data, check out their API documentation: https://www.blocktrail.com/api/docs

Update 1

I've added an additional example project - a personal wallet for receiving and making payments (with an integrated block explorer). The project demonstrates the payment api as well as the webhooks api. See it here: Simple Bitcoin Wallet App

0
On
<form action="/create_payment" method="POST">
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key=pk_test_6pRNASCoBOKtIshFeQd4XMUh
data-image="/square-image.png"
data-name="Demo Site"
data-description="2 widgets ($20.00)"
data-amount="2000"
data-currency="usd"
data-bitcoin="true">
</script>
</form>