18 lines
317 B
PHP
18 lines
317 B
PHP
<?php
|
|
|
|
namespace App\Models\Virtual;
|
|
|
|
use App\Core\Model;
|
|
|
|
class PropertySetting extends Model
|
|
{
|
|
protected $table = 'virtual_property_settings';
|
|
protected $primaryKey = 'name';
|
|
protected $keyType = 'string';
|
|
public $incrementing = false;
|
|
|
|
protected $casts = [
|
|
'value' => 'array',
|
|
];
|
|
}
|