Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

aligajani's avatar

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(),
0 likes
0 replies

Please or to participate in this conversation.