Skip to content

Instantly share code, notes, and snippets.

@DemianKost
Last active November 7, 2022 13:50
Show Gist options
  • Save DemianKost/45b0cd0f9ecdda5fa5ef74fc0b858cce to your computer and use it in GitHub Desktop.
Save DemianKost/45b0cd0f9ecdda5fa5ef74fc0b858cce to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
class DiskController extends Controller
{
public function index()
{
Storage::put('test1.txt', 'test again');
// If you didn't setup S3 as default disk in .env file
$contents = Storage::disk('s3')->get('test1.txt');
var_dump( $contents ); // This will show "test again text"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment