Answers for "how to get image and store in in database 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

upload image to database laravel 8

$request->image->storeAs('images', $imageName);  // storage/app/images/file.png
Posted by: Guest on August-25-2021

Code answers related to "how to get image and store in in database in laravel"

Browse Popular Code Answers by Language