21 lines
371 B
Plaintext
Raw Normal View History

2022-12-05 23:01:12 +08:00
<?php
namespace Modules\{Module}\Providers;
use Catch\CatchAdmin;
use Catch\Providers\CatchModuleServiceProvider;
class {Module}ServiceProvider extends CatchModuleServiceProvider
{
/**
* route path
*
2023-01-19 15:55:38 +08:00
* @return string
2022-12-05 23:01:12 +08:00
*/
2023-01-19 15:55:38 +08:00
public function moduleName(): string
2022-12-05 23:01:12 +08:00
{
// TODO: Implement path() method.
2023-01-19 15:55:38 +08:00
return '{module}';
2022-12-05 23:01:12 +08:00
}
2023-01-19 15:55:38 +08:00
}