I'm trying to write REST API to laravel 5.1. How to upload a file (image) on server without form and views?
I tried to get out of the body of the request and convert it to a resource, but also get a line image.
$image = Request::getContent();
$i = imagecreatefromstring($image);
imagejpeg($i);