Answers for "laravel stroe image url as fdile"

CSS
0

laravel css image url

.mystyle {
     background-image: url("../assets/img/background.png") 
 }
Posted by: Guest on August-10-2021
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

Code answers related to "laravel stroe image url as fdile"

Browse Popular Code Answers by Language