eloquentfilter.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Eloquent Filter Settings
  6. |--------------------------------------------------------------------------
  7. |
  8. | This is the namespace all you Eloquent Model Filters will reside
  9. |
  10. */
  11. 'namespace' => 'App\\ModelFilters\\',
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Custom generator stub
  15. |--------------------------------------------------------------------------
  16. |
  17. | If you want to override the default stub this package provides
  18. | you can enter the path to your own at this point
  19. |
  20. */
  21. // 'generator' => [
  22. // 'stub' => app_path('stubs/modelfilter.stub')
  23. // ]
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Default Paginator Limit For `paginateFilter` and `simplePaginateFilter`
  27. |--------------------------------------------------------------------------
  28. |
  29. | Set paginate limit
  30. |
  31. */
  32. 'paginate_limit' => env('PAGINATION_LIMIT_DEFAULT',15)
  33. ];