PHP code example of eduardoavargas / laravel-mautic

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

    

eduardoavargas / laravel-mautic example snippets


use Mautic;

$params = array(
    'firstname' => 'Eduardo',
    'lastname'=> 'Ali Khan',
    'email' => '[email protected]'
);

Mautic::request('POST','contacts/new',$params);

Mautic::request('GET','contacts');

Mautic::request('GET','contacts/1');
//where 1 is unique id for a contact.

Mautic::request('Delete','contacts/1/delete');