PHP code example of wallstreetio / laravel-ontraport

1. Go to this page and download the library: Download wallstreetio/laravel-ontraport 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/ */

    

wallstreetio / laravel-ontraport example snippets


    'providers' => [
        Wsio\Ontraport\OntraportServiceProvider::class,
    ]

    'aliases' => [
        'OAP' => Wsio\Ontraport\Facade\Ontraport::class,
    ]

public function index(\Wsio\Ontraport\Ontraport $ontraport)
{
    return $ontraport->contacts->get();
}

public function show($id)
{
    return OAP::contacts()->find($id);
}
bash
php artisan vendor:publish --provider="Wsio\Ontraport\OntraportServiceProvider"