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