We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab13890 commit 5d9638aCopy full SHA for 5d9638a
README.md
@@ -52,13 +52,13 @@ Require this package in your `composer.json` and update composer. This will down
52
After updating composer, add the ServiceProvider to the providers array in `config/app.php`
53
54
```php
55
-'Maatwebsite\Excel\ExcelServiceProvider',
+Maatwebsite\Excel\ExcelServiceProvider::class,
56
```
57
58
You can use the facade for shorter code. Add this to your aliases:
59
60
61
-'Excel' => 'Maatwebsite\Excel\Facades\Excel',
+'Excel' => Maatwebsite\Excel\Facades\Excel::class,
62
63
64
The class is bound to the ioC as `excel`
0 commit comments