PaperModel.php 390 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Repositories\Models\Exam;
  3. use App\Repositories\Models\Model;
  4. class PaperModel extends Model
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $table = 'exam_paper_model';
  10. protected $guarded = [];
  11. public $incrementing = true;
  12. /**
  13. * The attributes excluded from the model's JSON form.
  14. *
  15. * @var array
  16. */
  17. protected $hidden = [];
  18. }