Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

TimiAde's avatar

Integrate Google Meet, Zoom and Microsoft Teams

How can i integrate Google Meet, Zoom and Microsoft teams in a project in laravel.

0 likes
6 replies
TimiAde's avatar

@christian-qode I want users to choose how they want to meet their customers either through Google Meet, Zoom or Microsoft Teams. Like Calendly

christian-qode's avatar

@TimiAde Alright, you should start reading the documentation of the different tools on how to integrate it with your application. Based on the choice of your customer in the front-end, you should use one of the 'connectors' you've created.

martinbean's avatar

How can i integrate Google Meet, Zoom and Microsoft teams in a project in laravel.

@timiade By writing some code.

This forum isn’t a place to post your client requirements and have someone give you step-by-step instructions on how to fulfil them.

Start putting some effort in yourself because you’re just opening question and question with this one-line descriptions where you’ve clearly not attempted anything yourself first.

3 likes
TimiAde's avatar

@martinbean i have started the Google Meet to some extents Sir I used this package https://github.com/pulkitjalan/google-apiclient

Route::get('/client', function () {
    $googleClient = Google::getClient();
    dd($googleClient);
});

my result was

Google\Client {#516 ▼ // routes/web.php:28
  -auth: null
  -http: null
  -cache: null
  -token: null
  -config: array:29 [▶]
  -logger: null
  -credentials: null
  -deferExecution: false
  #requestedScopes: []
}

am i on the right path. Sir

Please or to participate in this conversation.