namespace App\Models; use Illuminate\Database\Eloquent\Model; class SeoSetting extends Model { protected $fillable = [ 'meta_title', 'meta_description', 'meta_keywords', 'og_image', 'og_title', 'og_description' ]; }