PHP code example of commacode / laravel-zoom-integration

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

    

commacode / laravel-zoom-integration example snippets


'providers' => [
    Commacode\ZoomIntegration\Providers\ZoomServiceProvider::class,
],

return [
    'api_key' => env('ZOOM_API_KEY', ''),
    'api_secret' => env('ZOOM_API_SECRET', ''),
    'recordings_path' => storage_path('app/zoom-recordings'),
];

php artisan vendor:publish --tag=zoom-config

php artisan zoom:download-recordings