| 1 | <?php |
||
| 11 | class EntityModel extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | protected $table = "app_entities"; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $fillable = [ |
||
| 22 | 'namespace', |
||
| 23 | 'name', |
||
| 24 | 'slug', |
||
| 25 | 'description', |
||
| 26 | 'prefix', |
||
| 27 | 'table_name', |
||
| 28 | 'locked', |
||
| 29 | 'create_table' |
||
| 30 | ]; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the Table name for the Entity |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getTableName() |
||
| 40 | |||
| 41 | public function fields() |
||
| 45 | } |
||
| 46 |