You need to use js to get the encoded image; If you're using jquery try something like this.
$.ajax({
url: "/path/to/submit",
data: {
imgdata:$('#photo').attr('src');
}
});
then on the laravel controller you should be able to get it using $request::get('imgdata');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community