Add feat unsold commodity notifications

This commit is contained in:
Afiq Hamzah
2024-05-28 16:52:35 +08:00
parent 19017b8174
commit 931de4471c
9 changed files with 403 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model
{
protected $fillable = [
'key',
'value',
'group',
'description',
];
}