vd/app/Models/Virtual/PropertySetting.php
2019-04-03 18:04:39 +08:00

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',
];
}