Edit File: Fqs.php
<?php namespace App\Models; use Spatie\Translatable\HasTranslations; class Fqs extends BaseModel { use HasTranslations; protected $fillable = ['question','answer']; public $translatable = ['question','answer']; }
Back to File Manager