cms first commit

This commit is contained in:
JaguarJack
2021-05-22 11:02:45 +08:00
parent 0f24c9c580
commit f81eaf40af
77 changed files with 4990 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace catchAdmin\cms\tables;
use catcher\CatchTable;
use catchAdmin\cms\tables\forms\Factory;
class ModelUsedFields extends CatchTable
{
public function table()
{
// TODO: Implement table() method.
return [];
}
protected function form()
{
// TODO: Implement form() method.
return Factory::create('ModelUsedFields');
}
}