getFolder()) . '/' . Str::uuid()->toString() . '.jpg'; $response = Http::get($url); if ($response->successful() === false) { appNotice("Couldn't download image from $url"); return null; } $result = Storage::disk("local")->put($storagePath, $response->body()); $verify = $this->verify($storagePath, config('image.faker.cropper')); return $result && $verify !== "NULL" ? $verify : "NULL"; } private function verify(string $storagePath, ?array $cropper = []): string { $fullPath = Image::localPath($storagePath); if (is_null($fullPath)) { appNotice("Couldn't locate image from $storagePath"); return "NULL"; } $meta = Image::meta($fullPath); if (empty($meta)) { appNotice("Couldn't retrieve image meta from $fullPath"); return "NULL"; } try { return Image::cropAlign($fullPath, $storagePath, ...$cropper); } catch (Error $err) { //Image::log($err, LoggingSeverityLevelsType::emergency); return "NULL"; } } }