LaravelPackages.net
Acme Inc.
Toggle sidebar
blue32a/laravel-azure-blob-storage

Laravel Filesystem using Azure Blob Storage.

316
0
1.0.0
About blue32a/laravel-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

laravel-azure-blob-storage

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

Star History Chart