Blame view
app/Models/Faq.php
299 Bytes
77ece5578 task-132687 FAQ p... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?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' ]; } |