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 31ac674 commit a8afc68Copy full SHA for a8afc68
readme.md
@@ -24,7 +24,15 @@ Laravel File API is good way to handle files with Laravel Storage.
24
php artisan vendor:publish --tag=fileapi_config
25
```
26
27
-1. fill the path in config/fileapi.php, it will generate routes for your files.
+### Config
28
+
29
+1. fill in the storage path, it will generate routes for your files.
30
31
+ 'path' => ['/images/event/'],
32
33
+1. set default thumb sizes(by key and value)
34
35
+ 'default_thumbs' => ['S' => '96x96', 'M' => '256x256', 'L' => '480x480'],
36
37
### Initialize File API
38
0 commit comments