Introduce option model for storing necessary configuration data.

This commit is contained in:
2025-01-04 18:37:29 +01:00
parent 3b51ab109d
commit fa085b7384
10 changed files with 412 additions and 2 deletions

19
app/Models/Option.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Option extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'value',
];
}