if i'm not mistaken, you can write the file anywhere that you have write access to.
http://laravel.com/docs/requests#files
http://laravel.com/docs/responses#special-responses
$destinationPath = app_path() . "/mystorage/";
Input::file('document')->move($destinationPath, "foobar.pdf");
//download
$file= app_path() . "/mystorage/foobar.pdf";
return Response::download($file);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community