PHP code example of krayin / krayin-zoom-integration

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

    

krayin / krayin-zoom-integration example snippets


return [
    // ...
    
    'zoom' => [
        // Our Zoom API credentials.
        'client_id'     => env('ZOOM_CLIENT_ID'),
        'client_secret' => env('ZOOM_CLIENT_SECRET'),
        
        // The URL to redirect to after the OAuth process.
        'redirect_uri'  => env('ZOOM_REDIRECT_URI'),
    ],
];



return [

    'viters' => [
        // ...

        'zoom_meeting' => [
            'hot_file'                 => 'zoom-vite.hot',
            'build_directory'          => 'zoom/build',
            'package_assets_directory' => 'src/Resources/assets',
        ],
    ],
];


Breadcrumbs::for('zoom.meeting.create', function (BreadcrumbTrail $trail) {
    $trail->parent('dashboard');
    $trail->push(trans('zoom_meeting::app.zoom.index.title'), route('admin.zoom_meeting.index'));
});