public function imageAdd($path,$file)
{
if ($file != null) {
$photo = fopen( $file, 'r');
$name = $file->getClientOriginalName();
$response = Http::attach('image', $photo, $name)->post(config('constants.file_upload_path'),['path'=>$path]);
$statusCode = $response->getStatusCode();
$responseBody = $response->getBody()->getContents();
$responseData = json_decode($responseBody, true);
if ($statusCode === 200) {
return $responseData['fileName'];
}
}
return null;
}
böyle bir kod var ve bu kod başka doaminde olan hostinge api ile resim yüklüyor. Fakat resimi herkes yükleye biliyor yani kısıtlama yok bu kısıtlamayı kod ile mi yapmak iyidir yoksa hostingde mi. Ve nasıl yapılabilir.