Skip to content

Instantly share code, notes, and snippets.

@jxlwqq
Last active June 3, 2023 19:05
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jxlwqq/788470f94ae6cf8823a33fc12bfae94a to your computer and use it in GitHub Desktop.
Save jxlwqq/788470f94ae6cf8823a33fc12bfae94a to your computer and use it in GitHub Desktop.
Create upload path based on current year and month
<?php
return [
/*
|--------------------------------------------------------------------------
| Laravel-admin upload setting
|--------------------------------------------------------------------------
|
| File system configuration for form upload files and images, including
| disk and upload path.
|
*/
'upload' => [
'disk' => 'public',
'directory' => [
'image' => 'images/'.date('Y/m'),
'file' => 'files/'.date('Y/m')
]
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment