bruno.quaresma's avatar

[L5] - Laravel Uploaded File

In Laravel5 when i up a file with the method move() this method save the file in the cloud or only local?

0 likes
3 replies
bruno.quaresma's avatar

@bestmomo Ok... but i need create an Uploader Service? Or i can make that directly like $request->file('foo')->move('my_path')?

RachidLaasri's avatar
Level 41

You can do that simply with

$request->file('foo')->move('my_path')

No need to an Uploader Service

1 like

Please or to participate in this conversation.