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);