I am trying to upload a image with my form in my laravelLaravel project. I have a Image cropper that saves the image as data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/..
the cropper sends a JSON string which contains a base64base64 encoded string of the file, i need to parse the JSON string to an object and then extract the base64 string and turn that into a file object.
I am using Image InterventionImage Intervention for the upload process