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:
@ -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());
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user