How-to guide for accessing the S3 file storage system. For additional information about S3 read the AWS S3 documentation.
use App\Facades\File;
$key = "my-unique-file-key";
$path = "/uploads/uploaded-file.pdf";
File::Put($key, $path);
$key = "my-unique-file-key";
$result = File::Get($key);
$key = "my-unique-file-key";
$result = File::Delete($key);