Reputation: 23542
In Laravel 4: Where should a not public upload folder be placed? (Best practice)
Where is what comes to mind:
\upload
\app\upload
\app\storage\upload
Upvotes: 0
Views: 255
Reputation: 1074
I'd say that
/app/storage/uploads
is the most appropriate place to store not publicly accessible uploaded files.
Upvotes: 1