Apr 7, 2020
0
Level 7
How to upload directly to S3 using Nova 2.0?
I am using Vapor so files >1MB dont work.
File::make('Information Memorandum File', 'information_memorandum_attachment_full_document_file')
->help('Please ensure file is under 20000kb')
->rules("file", "max:20000")
->disk('s3')
->path('tmp')
->deletable(false)
->disableDownload()
->onlyOnForms(),
Please or to participate in this conversation.