Files
speedBB/app/Models/Setting.php
2025-12-29 18:19:24 +01:00

30 lines
1.1 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $key
* @property string $value
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting whereKey($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|Setting whereValue($value)
* @mixin \Eloquent
*/
class Setting extends Model
{
protected $fillable = [
'key',
'value',
];
}