Answers for "change public_html path"

0

change public_html path

// AppServiceProvider...
public function register()
{   $this->app->bind('path.public', function() {
    return realpath(base_path().'/../public_html');
  });
}
Posted by: Guest on March-17-2022

Browse Popular Code Answers by Language