From 27470517566ea252f95fea14e76c28950a97ffe1 Mon Sep 17 00:00:00 2001 From: Matthew Daly Date: Tue, 5 Dec 2017 22:32:49 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b46c07..c22f982 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Finally, add the fields `AZURE_STORAGE_NAME`, `AZURE_STORAGE_KEY` and `AZURE_STO Constructing a URL ------------------ -This driver doesn't support the `Storage::get($path)` method, and adding support as a third-party package doesn't appear to be practical. However, you can construct a URL to retrieve the asset as follows: +This driver doesn't support the `Storage::url($path)` method, and adding support as a third-party package doesn't appear to be practical. However, you can construct a URL to retrieve the asset as follows: ```php $url = 'https://' . config('filesystems.disks.azure.name'). '.blob.core.windows.net/' . config('filesystems.disks.azure.container') . '/' . $filename;