Level 88
You shouldn't do this in the index.php. Instead you need to do this in a ServiceProvider. So Laravel comes by default with the AppServiceProvider. You can add it in there
class AppServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->bind('path.public', function() {
return DIR;
});
}
}
1 like