first commit

This commit is contained in:
JaguarJack
2022-12-05 23:01:12 +08:00
commit 0024080c28
322 changed files with 27698 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
declare(strict_types=1);
namespace {namespace}
{uses}
{property}
class {model} extends Model
{
{traits}
protected $table = '{table}';
protected $fillable = [{fillable} ];
/**
* @var array
*/
protected array $fieldsInList = [{fieldsInList}];
/**
* @var array
*/
protected array $form = [{form}];
/**
* @var array
*/
public array $searchable = [
{searchable}
];
{isPaginate}
}