Storage
The Public Disk
echo asset('storage/file.txt');The Local Disk
$storage = new Atom\Storage\Storage('local');
$storage->put('file.txt', 'Contents');Obtaining Disk Instances
use Atom\Atom\Storage;
$storage = new Storage('public');
$local_storage = new Storage();
$storage->put('avatar.png', $fileContents');
$local_storage->put('file.txt', 'Contents');Retrieving Files
File URLs
Storing Files
Deleting Files
Get All Files Within A Directory
Mis à jour
Ce contenu vous a-t-il été utile ?