mattapril / laravel-responsable-reports
Library for easily converting reports into various HTTP responses
Package info
github.com/MattApril/laravel-responsable-reports
pkg:composer/mattapril/laravel-responsable-reports
v1.4.3
2026-01-08 14:09 UTC
Requires
- php: >=7.0
- illuminate/contracts: >=10.0 <=13.0
- illuminate/routing: >=10.0 <=13.0
- illuminate/support: >=10.0 <=13.0
Requires (Dev)
- laravel/framework: ^12.0
- orchestra/testbench: ^10
- phpunit/phpunit: ^11.0
README
composer require mattapril/laravel-responsable-reports
For Lumen Projects
$this->app->singleton('Illuminate\Contracts\Routing\ResponseFactory', function ($app) {
return new \Illuminate\Routing\ResponseFactory(
$app['Illuminate\Contracts\View\Factory'],
$app['Illuminate\Routing\Redirector']
);
});
Configuration
optional .env configuration:
REPORT_PER_PAGE_KEY=per_page # define the input key that can be used to dynamically set the results per page for paginated responses
REPORT_PER_PAGE_MAX=100 # sets the maximum number of results per page when using REPORT_PER_PAGE_KEY (default is 100)