mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
24 lines
396 B
PHP
24 lines
396 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
/**
|
|
* @method static whereName(string $string)
|
|
*/
|
|
class Setting extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'value', 'name',
|
|
];
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $primaryKey = 'name';
|
|
|
|
protected $keyType = 'string';
|
|
}
|