If a User is uploading a large file, how do I make sure that is a resource?
Do I just pass in $request->file('my-large-upload')? or is there more to that?
I'm pretty new to file uploading/file-management in laravel, and (unfortunately) resource is quite a common google keyword :|
A bit late to this, but I came across the same problem and actually the solution is as easy as creating a Resource out of the content of the file that you want to upload.
For instance, if you want to "put" a file directly from an user upload, you'd something like this: