Skip to content

Latest commit

 

History

History
79 lines (51 loc) · 1.36 KB

README.md

File metadata and controls

79 lines (51 loc) · 1.36 KB

Screen

Accept payments from bitcoin

This package enables you to accept payments from bitcoin.

Installation

The package can be installed through Composer:

composer require jlp/payment

This service provider must be installed:

//for laravel <=4.2: app/config/app.php

'providers' => [
    ...
    'Jlp\Payment\PaymentServiceProvider'
    ...
];

Use example

use Jlp\Payment\Gateways\Bitcoin\PaymentGateway as BitcoinPaymentGateway;

class CheckoutConfirmOrderController extends BaseController {


    /**
     * @var PaymentGateway
     */
    protected $paymentGateway;

    public function __construct(.. PaymentGateway $paymentGateway ...)
    {
        ...
        $this->paymentGateway = $paymentGateway;
        ...
    }
public function showOrderDetails()
    {
        $order = Order::findOrFail(1);
		
		$this->paymentGateway->setOrder($order);
		
		$this->paymentGateway->preparePayment();
		
		$paymentGateway = $this->paymentGateway;
		
		return view('store.payment')->with(compact('order', 'paymentGateway'));
	 }

Ejemplo

Remarks

This module is derived from the WooComerce module for bitcoin: http://www.bitcoinway.com/

Licence

This project is licensed under the MIT License