Laravel 5 on Shared Hosting with No SSH: How to store uploaded file directly to public_html folder? – CPanel
My structure is like this: /laravelfiles /public_html --/demo ----/index.php (and other files inside public folder) I have changed the index.php to access /laravelfiles, everything works fine. My config filesystem: 'local' => [ 'driver' => 'local', 'root' => public_path(), ], 'public'…