first commit

This commit is contained in:
Noor E Ilahi
2026-01-09 12:54:53 +05:30
commit 7ccf44f7da
1070 changed files with 113036 additions and 0 deletions

40
app/Models/Setting.php Normal file
View File

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