Skip to content

Instantly share code, notes, and snippets.

@AbdallaZaki
Created April 2, 2017 00:42
Show Gist options
  • Save AbdallaZaki/3fdf460d320ee06d931af4bda901890e to your computer and use it in GitHub Desktop.
Save AbdallaZaki/3fdf460d320ee06d931af4bda901890e to your computer and use it in GitHub Desktop.
<?php
Route::get('public/previewimages/{filename}', function ($filename) {
$storagePath = storage_path('app/images/'.$filename);
\Log::debug($storagePath);
if(!\File::exists($storagePath))return response("not found",404);
return response()->file($storagePath);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment