Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (25 loc) · 503 Bytes

Tikkie.md

File metadata and controls

28 lines (25 loc) · 503 Bytes

Application

ABN-AMRO Tikkie v2 Laravel integration

General | Application | Subscription PaymentRequest | Payment | Refund | Example


General

There are several ways to get the Tikkie object.

Facade
$tikkie = app('tikkie');
$tikkie->....
Dependency Injection
class Example {
    function show(Tikkie $tikkie) {
        $tikkie->....
    }   
}