AppServiceProvider.php 563 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Pagination\Paginator;
  4. use Illuminate\Support\ServiceProvider;
  5. class AppServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * Register any application services.
  9. *
  10. * @return void
  11. */
  12. public function register()
  13. {
  14. $this->app->bind('path.public', function() {
  15. return realpath(base_path().'/www');
  16. });
  17. }
  18. /**
  19. * Bootstrap any application services.
  20. *
  21. * @return void
  22. */
  23. public function boot()
  24. {
  25. Paginator::useBootstrap();
  26. }
  27. }