blue32a/laravel-azure-blob-storage

Laravel Filesystem using Azure Blob Storage.

1.0.0 2021-04-10 10:15 UTC

This package is auto-updated.

Last update: 2024-05-20 17:20:46 UTC


README

About

Use Azure Blob Storage as file storage for Laravel.

Flysystem Adapter: blue32a/flysystem-azure-blob-storage

Installation

$ composer require blue32a/laravel-azure-blob-storage

Usage

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