Answers for "where to put your image in 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 upload image

If the upload isnt working try this in you php.ini
  
upload_max_filesize = 20M
post_max_size = 20M
Posted by: Guest on December-28-2021

Code answers related to "where to put your image in laravel"

Browse Popular Code Answers by Language