You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Manually create a config folder in ./config/stream-laravel.php and load it inside your bootstrap
101
+
102
+
```php
103
+
return array(
104
+
'api_key' => 'API_KEY',
105
+
'api_secret' => 'API_SECRET',
106
+
'api_app_id' => 'API_APP_ID',
107
+
'location' => 'us-east',
108
+
'timeout' => 3,
109
+
)
110
+
```
111
+
112
+
```
113
+
$app->configure('stream-laravel');
114
+
```
115
+
78
116
###Eloquent integration
79
117
80
118
Stream laravel instant integration with Eloquent models;extending the ```GetStream\StreamLaravel\Eloquent\Activity``` class will give you automatic tracking of your models to user feeds.
0 commit comments