I have my public directory named public_html instead of public. So where do I change this setting?
I have a packages that uses $this->app['path.public'], but that package is trying to use public instead of what I want, public_html. So how do I tell Laravel 5 to use public_html?
Where do you set the public directory in Laravel 5?
I have my public directory named
public_html
instead ofpublic
. So where do I change this setting?I have a packages that uses
$this->app['path.public']
, but that package is trying to usepublic
instead of what I want,public_html
. So how do I tell Laravel 5 to usepublic_html
?