Laravel Filesystem using Azure Blob Storage.
blue32a/laravel-azure-blob-storage is a Laravel package for laravel filesystem using azure blob storage..
It currently has 0 GitHub stars and 316 downloads on Packagist (latest version 1.0.0).
Install it with composer require blue32a/laravel-azure-blob-storage.
Discover more Laravel packages by blue32a
or browse all Laravel packages to compare alternatives.
Last updated
Use Azure Blob Storage as file storage for Laravel.
Flysystem Adapter: blue32a/flysystem-azure-blob-storage
$ composer require blue32a/laravel-azure-blob-storage
Configure your disk in config/filesystems.php.
The driver is azure-blob.
'disks' => [
'azure-blob' => [
'driver' => 'azure-blob',
'secure' => true,
'name' => env('AZULE_STORAGE_NAME'),
'key' => env('AZULE_STORAGE_KEY'),
'container' => 'example',
'blob_endpoint' => env('AZULE_STORAGE_BLOB_ENDPOINT'),
'public_endpoint' => env('AZULE_STORAGE_PUBLIC_ENDPOINT'),
],
],
You can use url(). Requires public read access to the Blob.
Storage::disk('azure-blob')->url($path);