Faq.php
299 Bytes
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property string $question
* @property string $answer
* @property string $target
* @property boolean $active
*/
class Faq extends Model
{
protected $guarded = [
'created_at',
'updated_at'
];
}