| Current Path : /var/www/html/performance.sumar.com.py/app/Providers/ |
| Current File : /var/www/html/performance.sumar.com.py/app/Providers/AppServiceProvider.php |
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->bind('path.public', function() {
return realpath(base_path().'/public');
});
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}