Files
vuefilemanager/app/Models/Setting.php
2021-04-25 09:02:00 +02:00

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';
}