Skip to content

Instantly share code, notes, and snippets.

@biobii
Last active February 11, 2018 05:34
Show Gist options
  • Save biobii/fa5cf6f9ab3da317afc107fa18142939 to your computer and use it in GitHub Desktop.
Save biobii/fa5cf6f9ab3da317afc107fa18142939 to your computer and use it in GitHub Desktop.
Alternative to load image from storage folder in Laravel.
Route::get('/media/img/{filename}', function($filename) {
$path = storage_path('app/public/' . $filename);
if (! \File::exists($path))
abort(404);
$file = \File::get($path);
$type = \File::mimeType($path);
return response($file, 200)->header('Content-Type', $type);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment