Skip to content

Commit

Permalink
Removed unused path
Browse files Browse the repository at this point in the history
  • Loading branch information
bee-interactive committed Jun 11, 2024
1 parent 0700805 commit d683934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Next, you'll need to use the `<x-livewire-filemanager />` component where you wa
If you intent to give access to your files with the public, you can add this inside your web routes file:.

```
Route::get('/assets/{path}', [FileController::class, 'show'])->where('path', '.*')->name('assets.show');
Route::get('{path}', [FileController::class, 'show'])->where('path', '.*')->name('assets.show');
```

And don't forget to import the FileController class:
Expand Down

0 comments on commit d683934

Please sign in to comment.