darvis/manta-laravel-uploads

Laravel Livewire 上传模块,支持 TinyMce 6 (多语言)

1.0.15 2023-06-03 09:18 UTC

This package is auto-updated.

Last update: 2024-09-11 20:21:16 UTC


README

将此添加到 config/filesystems.php 文件的 disks 部分

        'azure' => [ // NB This need not be set to "azure", because it's just the name of the connection - feel free to call it what you want, or even set up multiple blobs with different names
            'driver'    => 'azure', // As this is the name of the driver, this MUST be set to "azure"
            'name'      => env('AZURE_STORAGE_NAME'),
            'key'       => env('AZURE_STORAGE_KEY'),
            'container' => env('AZURE_STORAGE_CONTAINER'),
            'url'       => env('AZURE_STORAGE_URL'),
            'prefix'    => null,
            'connection_string' => env('AZURE_STORAGE_CONNECTION_STRING') // optional, will override default endpoint builder 
        ],

设置 .env 值
FILESYSTEM_DISK=azure