Skip to content

Instantly share code, notes, and snippets.

@ticituc
Created November 25, 2021 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ticituc/bb7b3772e0601d9c18d7efafdde53678 to your computer and use it in GitHub Desktop.
Save ticituc/bb7b3772e0601d9c18d7efafdde53678 to your computer and use it in GitHub Desktop.
<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class Setting extends Model
{
protected $fillable = [
'key',
'value',
'section',
'label',
'field_type_id',
'preview_parent_id'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment