要移至服务器,我使用以下代码覆盖应用程序提供商中的 public_path():
public function register()
{
$this->app->bind('path.public', function() {
return base_path().'/public_html/img';
});
}
但是没有得到
/home/domain/img/image.jpg
我有
/Home/domain/laravelprojectname/public_html/img/image.jpg
有人可以帮忙吗?谢谢。