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
Add to your `app/config/app.php` (Laravel 4) or `config/app.php` (Laravel 5) the service provider:
44
+
Add to your `app/config/app.php` (Laravel 4) or `config/app.php` (Laravel <5.5) the service provider:
45
45
46
46
```php
47
47
'providers' => array(
@@ -79,7 +79,7 @@ The example below shows how you can use the `Tmdb` facade.
79
79
If you don't want to keep adding the `use Tmdb\Laravel\Facades\Tmdb;` statement in your files, then you can also add the facade as an alias in `config/app.php` file.
80
80
81
81
```php
82
-
use Tmdb\Laravel\Facades\Tmdb;
82
+
use Tmdb\Laravel\Facades\Tmdb; // optional for Laravel ≥5.5
0 commit comments