2024-03-12 22:39:16 -04:00

28 lines
474 B
PHP

<?php
namespace App\Models;
/**
* App\Models\Setting.
*
* @property int $id
* @property string $key
* @property string $value
*/
class Setting extends Model
{
/**
* The table associated with the model.
*/
protected $table = 'settings';
public $timestamps = false;
protected $fillable = ['key', 'value'];
public static array $validationRules = [
'key' => 'required|string|between:1,191',
'value' => 'string',
];
}