AppServiceProvider.php 466 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Routing\Route;
  4. use Illuminate\Support\ServiceProvider;
  5. use Nette\Utils\Paginator;
  6. class AppServiceProvider extends ServiceProvider
  7. {
  8. /**
  9. * Register any application services.
  10. */
  11. public function register(): void
  12. {
  13. //
  14. }
  15. /**
  16. * Bootstrap any application services.
  17. */
  18. public function boot(): void
  19. {
  20. //
  21. // Register your additional route file
  22. }
  23. }