PHP code example of mehrdadep / laravel-zoho-cliq

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

    

mehrdadep / laravel-zoho-cliq example snippets


// config/services.php
...
'zoho_cliq' => [
'webhook_url' => env('ZOHO_CLIQ_WEBHOOK_URL'),
],
...

// config/services.php
...
'zoho_cliq' => [
    'sales_url' => env('ZOHO_CLIQ_SALES_WEBHOOK_URL'),
    'dev_url' => env('ZOHO_CLIQ_DEV_WEBHOOK_URL'),
],
...

public function routeNotificationForZohoCliq(Notification $notification)
{
   return config('services.zoho_cliq.sales_url')
}