Here is the code that saves my image inside /storage/app/public folder
$path = $request->file('question_image')->store('public');
The laravel 5.3 documentation says I have to create a symbolic link from /public/storage to /storage/app/public folder hence I did by using command
php artisan storage:link
At this point I am successful to store my images inside /storage/app/public.
Now what is understood is that I can get those files using
echo asset('storage/file_name.jpeg');
But no luck whatsoever.
Please let me know what I am missing here?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire