Skip to content

Commit 0c7c2c0

Browse files
committed
Update README.md
1 parent 0ecbb9c commit 0c7c2c0

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ We utilise the find function to return a record by searching for it by a unique
161161
The find all function returns a customised Laravel Collection, which we call a resultset.
162162

163163
``` php
164-
$users = Zoom::user()->all();
164+
$users = Zoom::user()->all();
165165
```
166166

167167
When calling the the all function we will make up to 5 API calls to retreive all the data, so 5 x 300 records (the max allowed), i.e. up to 1500 records per request. This can be amended in the config by updating 'max_api_calls_per_request'.
@@ -335,7 +335,7 @@ Currently only the User model and Role model can be created directly, most other
335335
To create a user.
336336

337337
``` php
338-
Zoom::user()->create([
338+
Zoom::user()->create([
339339
'first_name' => 'First Name',
340340
'last_name' => 'Last Name',
341341
'email' => 'test@test.com',
@@ -529,18 +529,18 @@ This is the main access for most models in Zoom.
529529

530530
// can only be retrieved through a user
531531

532-
$user()->settings;
532+
$user->settings;
533533

534534
// To get sub relations then call the relationship of the setting
535535

536-
$user()->settings->scheduleMeeting;
537-
$user()->settings->emailNotification;
538-
$user()->settings->feature;
539-
$user()->settings->inMeeting;
540-
$user()->settings->integration;
541-
$user()->settings->recording;
542-
$user()->settings->telephony;
543-
$user()->settings->tsp;
536+
$user->settings->scheduleMeeting;
537+
$user->settings->emailNotification;
538+
$user->settings->feature;
539+
$user->settings->inMeeting;
540+
$user->settings->integration;
541+
$user->settings->recording;
542+
$user->settings->telephony;
543+
$user->settings->tsp;
544544

545545
// To update a setting
546546

@@ -842,7 +842,8 @@ If you discover any security related issues, please email colin@macsi.co.uk inst
842842

843843
## Credits
844844

845-
- [Colin Hall](https://github.com/macsidigital)
845+
- [MacsiDigital](https://github.com/macsidigital)
846+
- [Colin Hall](https://github.com/colinhall17)
846847
- [All Contributors](../../contributors)
847848

848849
## License

0 commit comments

Comments
 (0)