Skip to content

Commit

Permalink
Merge pull request #198 from pxlrbt/fix/signed-middleware-bug
Browse files Browse the repository at this point in the history
fix export download bug introduced by #197
  • Loading branch information
pxlrbt authored Aug 19, 2024
2 parents 0d6f3f2 + bf35d2e commit da3db3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
use Illuminate\Support\Facades\Storage;

Route::get('filament-excel/{path}', function (string $path) {
$path = Storage::disk('filament-excel')->path($path);
$filename = substr($path, 37);
$path = Storage::disk('filament-excel')->path($path);

return
response()
Expand Down

0 comments on commit da3db3b

Please sign in to comment.