Update tenants.blade.md

This commit is contained in:
Chris Brown 2019-09-23 17:20:13 -04:00 committed by GitHub
parent a1317ae612
commit 20f4f7cc05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@ You may also use `->with<PropertyNameInPascalCase>` and it will be stored in sna
These methods make the most sense (= sound the best) during tenant creation:
```php
// $domains = ['foo.yourapp.com', 'foo.com'];
$domains = ['foo.yourapp.com', 'foo.com'];
$primary_domain = $domains[0];
$id = $primary_domain . $this->randomString(24);
@ -96,4 +96,4 @@ Tenant::new()
->withPaypalApiKey('defaultApiKey');
->withId($id)
->save();
```
```