PHP code example of seinoxygen / laravel-contabilium

1. Go to this page and download the library: Download seinoxygen/laravel-contabilium library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

seinoxygen / laravel-contabilium example snippets


'contabilium' => [
    'client_id' => env('CONTABILIUM_CLIENT_ID'),
    'client_secret' => env('CONTABILIUM_CLIENT_SECRET'),
    'country' => env('CONTABILIUM_COUNTRY', 'ar'),
],

'providers' => [
    ...
    SeinOxygen\Contabilium\ContabiliumServiceProvider::class,
    ...
],

'aliases' => [
    ...
    'Contabilium' => SeinOxygen\Contabilium\Facades\Contabilium::class,
    ...
],