feat: cms first commit

This commit is contained in:
JaguarJack
2023-02-23 18:04:51 +08:00
parent 66d9485a89
commit 662aee4c97
16 changed files with 659 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Modules\Cms\Providers;
use Catch\CatchAdmin;
use Catch\Providers\CatchModuleServiceProvider;
class CmsServiceProvider extends CatchModuleServiceProvider
{
/**
* route path
*
* @return string
*/
public function moduleName(): string
{
// TODO: Implement path() method.
return 'Cms';
}
}