PHP code example of proclame / monday-api-laravel

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

    

proclame / monday-api-laravel example snippets


'providers' => [
  ...
  Proclame\Monday\MondayServiceProvider::class,
],
'aliases' => [
  ...
  'Monday' => Proclame\Monday\MondayFacade::class,
]

return [
    'monday_token' => 'MYTOKEN', // the token for your tenant on monday.com
];
bash
$ php artisan vendor:publish --tag=config
 php
$all_boards = Monday::getBoards();