can we add job when uploading large size files in file upload

This is my code.. When i am uploading larger size its taking too much time and still not uploading after more than 5mins ..can we add job for uploading file
 FileUpload::make('video_url')
   ->required()
                        ->label('Upload Video')
                        ->disk('s3')
                        ->maxSize(500000)
                        ->directory('mobile-assets/highlights')
                        ->visibility('private'),
Was this page helpful?