@scotty_walker
To pass a file path with '/' to a route in Laravel, you can use route parameters. For example, if you have a route defined like this:
1
|
Route::get('download/{file_path}', 'DownloadController@downloadFile'); |
You can then pass the file path as a parameter in the URL like this:
1
|
http://yourdomain.com/download/path/to/file.txt |
In your controller, you can then access the file path parameter like this:
1 2 3 |
public function downloadFile($file_path) { // Use $file_path to download the file } |
Make sure to properly handle the file path parameter in your controller to prevent any security vulnerabilities.