Skip to content

Commit

Permalink
feat: Add SiteSetting model for centralized site m
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 11, 2024
1 parent 857c21e commit 4a854e8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/Models/SiteSetting.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class SiteSetting extends Model
{
protected $fillable = ['name', 'value', 'description'];

protected $casts = [
'value' => 'string',
];
}

0 comments on commit 4a854e8

Please sign in to comment.