1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Added Pagination Service class

Pagination is going to need some additional features in the near future,
so it made sense to give it it's own seperate class.
This commit is contained in:
ro
2024-02-20 12:57:33 -06:00
parent f96707f256
commit 682360c140
4 changed files with 59 additions and 31 deletions

View File

@ -35,6 +35,10 @@ class AppServiceProvider extends ServiceProvider
$this->app->bind(MaintenanceService::class, function ($app) {
return new MaintenanceService(new Location());
});
$this->app->bind(PaginationService::class, function ($app) {
return new PaginationService(new Location());
});
}
/**