I tried to download files or images, but I just get this
Sorry, the page you are looking for could not be found. 1/1 NotFoundHttpException in RouteCollection.php line 161:
My route
Route::get('/download/{$file}' , 'DetailController@downloadFile');
My controller
public function downloadFile($file){
$pathtoFile = public_path().'images/'.$file;
return response()->download($pathtoFile);
}
My sight
<a href='/download/{{$file}}'>Download</a>
Where is my error or is there another way to do it?