How to get image url with mimeType in laravel 8 from Storage sub folder.
My Folder look like this :
I want to access this image marked in red, So I did these steps:
Step 1 : Create Link using ** php artisan storage:link **
Then In my Controller :
$exists = Storage::disk('public')->get('/app/media/HRTKD1607258351/HRTKD1607258351');
if($exists) {
return "File Found";
}else{
return "File Not Found";
}
But I am getting File Not Found Error.
Can somebody help me?
Thanks in advance.
Storage::disk('public')->get('/app/media/HRTKD1607258351/HRTKD1607258351.jpg');
here.jpg
was missing – Kamlesh Paul