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
Copy file name to clipboardExpand all lines: readme.md
+22
Original file line number
Diff line number
Diff line change
@@ -411,6 +411,28 @@ class CustomExport extends ExcelExport
411
411
}
412
412
```
413
413
414
+
## File download URL customization
415
+
416
+
By default, the package generates a signed URL with a default expiration time of 24 hours.
417
+
The URL contains the filename including the extension. Some WAF (Web Application Firewall) solutions can block the URL due to the fact that it links to a file, which contains parameters and can cause a false positive.
418
+
419
+
```php
420
+
// Somewhere in a ServiceProvider in the `boot()` method.
0 commit comments