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
{{ message }}
This repository was archived by the owner on Jun 23, 2025. It is now read-only.
Documentation for configuration can be found in [config/unleash.php](https://github.com/mikefrancis/laravel-unleash/blob/master/config/unleash.php).
22
+
Documentation for configuration can be found in [config/unleash.php](https://github.com/laravel-unleash/laravel-unleash/blob/master/config/unleash.php).
23
23
24
24
## Usage
25
25
26
26
```php
27
-
use \MikeFrancis\LaravelUnleash\Unleash;
27
+
use LaravelUnleash\Unleash;
28
28
29
29
$unleash = app(Unleash::class);
30
30
@@ -84,7 +84,7 @@ $allFeatures = Feature::all();
84
84
If your strategy relies on dynamic data at runtime, you can pass additional arguments to the feature check functions:
85
85
86
86
```php
87
-
use \MikeFrancis\LaravelUnleash\Unleash;
87
+
use LaravelUnleash\Unleash;
88
88
use Config;
89
89
90
90
$unleash = app(Unleash::class);
@@ -129,8 +129,8 @@ To use the middle, add the following to your `app/Http/Kernel.php`:
0 commit comments