Open mpapado3 opened 3 years ago
Hi @mpapado3
Thanks for getting in touch
I will look into the issue, I pretty much exclusively use facades so haven't come across any issue but will do some testing.
im getting the same problem did you know how to fix it??
I have installed the package to a laravel 8 project and followed the installation process mentioned on the readme. But I cannot do anything request to the API. For example when I try to create a user I get the error Call to a member function post() on null and when I try to get all meetings or all users I get Call to a member function get() on null. I have put the key and secret on .env file and published the vendor as described.
So my code is the below:
$user2 = $zoom->user->create([ 'first_name' => 'Test', 'last_name' => 'User', 'email' => 'test@test.com', 'password' => 'some pass' ]);