PHP code example of professionalweb / crm-buffer-lib

1. Go to this page and download the library: Download professionalweb/crm-buffer-lib 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/ */

    

professionalweb / crm-buffer-lib example snippets



return [
    'providers' => [
        ...
        \professionalweb\crmbuffer\CRMBufferProvider::class,
        ...
    ],
];



return [
    'url'           => 'https://crm-buffer.com/api/v1',
    'client_id'     => '%your_client_id%',
    'client_secret' => '%your_client_secret%',
];



namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use professionalweb\crmbuffer\Interfaces\CRMBufferService;

/**
 * Process new lead
 * @package App\Jobs
 */
class NewLead implements ShouldQueue
{
    use InteractsWithQueue, Queueable, SerializesModels;

    public $title;

    public $name;

    public $email;

    public $phone;

    public $comment;

    public $visitorId;

    public $productId;

    public $country;

    public $city;

    public $position;

    /**
     * Execute the job.
     *
     * @param CRMBufferService $crmService
     *
     * @return void
     */
    public function handle(CRMBufferService $crmService)
    {
        $lead = $crmService->lead();
        if ($this->title) {
            $lead->setTitle($this->title);
        }
        if ($this->name) {
            $lead->setName($this->name);
        }
        if ($this->email) {
            $lead->setEmail($this->email);
        }
        if ($this->phone) {
            $lead->setPhone($this->phone);
        }
        if ($this->visitorId) {
            $lead->setVisitorId($this->visitorId);
        }
        if ($this->comment) {
            $lead->setComment($this->comment);
        }
        if ($this->productId) {
            $lead->setProductId($this->productId);
        }
        if ($this->country) {
            $lead->setCountry($this->country);
        }
        if ($this->city) {
            $lead->setCity($this->city);
        }
        if ($this->productId) {
            $lead->setProductId($this->productId);
        }
        if ($this->position) {
            $lead->setPosition($this->position);
        }
        $lead->send();
    }
}