37 lines
467 B
Plaintext
Raw Permalink Normal View History

2022-12-05 23:01:12 +08:00
<?php
declare(strict_types=1);
namespace {namespace}
{uses}
{property}
class {model} extends Model
{
{traits}
protected $table = '{table}';
protected $fillable = [{fillable} ];
/**
* @var array
*/
2022-12-14 19:25:52 +08:00
protected array $fields = [{fieldsInList}];
2022-12-05 23:01:12 +08:00
/**
* @var array
*/
protected array $form = [{form}];
/**
* @var array
*/
public array $searchable = [
{searchable}
];
{isPaginate}
}