mercredi 30 novembre 2016

When trying file download it shows error route not found

This is in my blade file

{!! Html::link(storage_path().'/documents/'.$file->name, $file->name) !!}

This is controller

public function download($file_name){
    $file_path = storage_path('documents').'/'.$file_name;
    return response()->download($file_path);
}

Route

Route::get('documents/{file}','FilesController@download');



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire