I have just upgraded my 5.2 install of laravel to 5.3 and then to 5.4 following the official upgrading methods.
I am now tryin
I just encountered the same issue and found a solution.
Before rendering images you have to create a symbolic link from "public/storage" to "storage/app/public" using this command:
php artisan storage:link
In "storage/app/public" you should have a folder "images" Now you can render this code in your markdown.blade.php:
}})
Second option is similar:
}})
Both work fine