Skip to content

Instantly share code, notes, and snippets.

@ydenissov
Created December 1, 2022 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ydenissov/1582a7f10f3a4432c30a538a552ae54c to your computer and use it in GitHub Desktop.
Save ydenissov/1582a7f10f3a4432c30a538a552ae54c to your computer and use it in GitHub Desktop.
Check dir exists and create if not Laravel Storage
<?php
if (!Storage::disk('local')->exists("import")) {
Storage::disk('local')->makeDirectory("import");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment