You can try:
Create the special route for that
Route::get('images/{filename}', function ($filename)
{
$path = storage_path() . '/img/' . $filename;
if(!File::exists($path)) abort(404);
$file = File::get($path);
$type = File::mimeType($path);
$response = Response::make($file, 200);
$response->header("Content-Type", $type);
return $response;
});
And access a file from this route url /images/{filename}.