StatisticServiceProvider.php 374 B

1234567891011121314151617181920
  1. <?php
  2. namespace Modules\Statistic\Providers;
  3. use Catch\CatchAdmin;
  4. use Catch\Providers\CatchModuleServiceProvider;
  5. class StatisticServiceProvider extends CatchModuleServiceProvider
  6. {
  7. /**
  8. * route path
  9. *
  10. * @return string
  11. */
  12. public function moduleName(): string
  13. {
  14. // TODO: Implement path() method.
  15. return 'statistic';
  16. }
  17. }