Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save janzikmund/e33314a03553c22adb11aa43cbcc3b45 to your computer and use it in GitHub Desktop.
Save janzikmund/e33314a03553c22adb11aa43cbcc3b45 to your computer and use it in GitHub Desktop.
Laravel helper get storage disk path
<?php
/**
* Get path for Storage disk
*/
function disk_path($disk = 'local') {
return Storage::disk($disk)->getDriver()->getAdapter()->getPathPrefix();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment