123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Repositories\Models\Exam;
- use App\Repositories\Models\Model;
- use Prettus\Repository\Contracts\Transformable;
- use Prettus\Repository\Traits\TransformableTrait;
- /**
- * Class Paper.
- *
- * @package namespace App\Repositories\Models\Exam;
- */
- class PaperTopic extends Model implements Transformable
- {
- use TransformableTrait;
- protected $table = 'exam_paper_topic';
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $guarded = [];
- }
|