Answers for "how to get access to image in storage and display in blade laravel*"

PHP
1

how to store an image in laravel directly from url

use Storage;
$url = "http://www.google.co.in/intl/en_com/images/srpr/logo1w.png";
$contents = file_get_contents($url);
$name = substr($url, strrpos($url, '/') + 1);
Storage::put($name, $contents);
Posted by: Guest on June-19-2021
0

Laravel How to access imagen uploaded in storage

php artisan storage:link

ejem:

http://somedomain.com/storage/image.jpg
Posted by: Guest on August-16-2021

Code answers related to "how to get access to image in storage and display in blade laravel*"

Browse Popular Code Answers by Language