Level 122
php uploads all files with a temporary name. You must then move the image
1 like
i try to upload file using PostMan, in laravel part i when return $request->images. i got ths values /tmp/phpGVIf3O
public function uploadCompanyPhotos(NullRequest $request)
{
$user = Auth::user();
$photos = [];
return $request->images;
}
in postman i chose input type file, and set header content, multipart
php uploads all files with a temporary name. You must then move the image
Please or to participate in this conversation.