37 lines
473 B
Plaintext
37 lines
473 B
Plaintext
![]() |
<?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}
|
||
|
}
|