QuickQuiz/app/Models/SystemSetting.php

15 lines
240 B
PHP

<?php
declare(strict_types=1);
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
final class SystemSetting extends Model
{
protected $fillable = ['key', 'value', 'group'];
protected $casts = ['value' => 'array'];
}