How would you guys approach uploading large files (up to several Gbs) in Laravel.
Also what would be the best way notify the user automatically when his/her file is uploaded successfully.
Well, outside of simply ensuring that the web server is actually capable of uploading such large files, you might want to consider utilizing a component that helps with resuming of failed uploads and/or maybe even considering writing a custom endpoint that can process chunking of uploads from a JS file uploader.