view.php 905 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | View Storage Paths
  6. |--------------------------------------------------------------------------
  7. |
  8. | Most templating systems load templates from disk. Here you may specify
  9. | an array of paths that should be checked for your views. Of course
  10. | the usual Laravel view path has already been registered for you.
  11. |
  12. */
  13. 'paths' => array(__DIR__.'/../views'),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Pagination View
  17. |--------------------------------------------------------------------------
  18. |
  19. | This view will be used to render the pagination link output, and can
  20. | be easily customized here to show any view you like. A clean view
  21. | compatible with Twitter's Bootstrap is given to you by default.
  22. |
  23. */
  24. 'pagination' => 'pagination::slider',
  25. );