Mejor paginado, y actualizado el .env.example!

This commit is contained in:
2021-04-30 15:42:59 -04:00
parent 9fdf9723be
commit a0ab2c6c8c
6 changed files with 94 additions and 16 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Providers;
use App\Services\Auth0Service;
use App\Services\PaginatorService;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
@@ -17,5 +18,8 @@ class AppServiceProvider extends ServiceProvider
$this->app->singleton(Auth0Service::class, function($app) {
return new Auth0Service($app);
});
$this->app->singleton(PaginatorService::class, function($app) {
return new PaginatorService($app);
});
}
}