Here is my code:
$avatar->pixelate(12);
It should pixelate the picture but it shows me this:
"Method Illuminate\Http\UploadedFile::pixelate does not exist."
Here is my code:
$avatar->pixelate(12);
It should pixelate the picture but it shows me this:
"Method Illuminate\Http\UploadedFile::pixelate does not exist."
This method does not exist in the UploadedFile class. However, it is available in the very popular Intervention Image library.
It means Illuminate\Http\UploadedFile
class does not have pixelate
method. You can check laravel API to which class have which methods..
And as you can see here there is no method called pixelate