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
Be sure to [enable the cache](https://laravel.com/docs/5.4/cache) for your Laravel application. This package uses the cache to store the rollout settings.
18
+
19
+
### Configuring the Service Provider
20
+
21
+
Open config/app.php and register the required service provider above your application providers.
22
+
23
+
```php
24
+
'providers' => [
25
+
...
26
+
Jaspaul\LaravelRollout\ServiceProvider::class
27
+
...
28
+
]
29
+
```
30
+
31
+
### Implementing Interfaces
32
+
33
+
Your rollout users must implement the `\Jaspaul\LaravelRollout\Helpers\User` interface. Often this will be your main user object:
34
+
35
+
```php
36
+
<?php
37
+
38
+
use Jaspaul\LaravelRollout\Helpers\User as Contract;
0 commit comments