PHP code example of tsakib360 / lara-zoom

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

    

tsakib360 / lara-zoom example snippets


Tsakib360\LaraZoom\LaraZoomServiceProvider::class,

'Zoom' => Tsakib360\LaraZoom\Facades\Zoom::class,

use Tsakib360\LaraZoom\Facades\Zoom;

$data = array();
$data['topic'] 		= 'Example Test Meeting';
$data['start_date'] = date("2022-01-29 19:25:00");
$data['duration'] 	= 30;
$data['type'] 		= 2;
$data['password'] 	= "12345";
$data['join_before_host'] = true;

$response = Zoom::createMeeting($data);
return $response

use Tsakib360\LaraZoom\Facades\Zoom;

$response = Zoom::getMeetings();
return $response
bash
php artisan vendor:publish --provider="Tsakib360\LaraZoom\LaraZoomServiceProvider"