<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SiteDataItem extends Model
{
protected $primaryKey = 'key';
public $incrementing = false;
protected $keyType = 'string';
protected $fillable = ['key', 'value'];
}
Powered by TurnKey Linux.