CmsSubject.php 534 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\SoftDeletes;
  4. class CmsSubject extends BaseModel
  5. {
  6. use SoftDeletes;
  7. protected $dates = ['deleted_at'];
  8. protected $table = 'cms_subject';
  9. /**
  10. * 可被批量赋值的字段
  11. * @var array
  12. */
  13. protected $fillable = ['city_id','city_name','title','show_type','is_open'];
  14. //一对多关联专题商品表
  15. public function cmsSubjectProduct()
  16. {
  17. return $this->hasMany('App\Models\CmsSubjectProduct','subject_id');
  18. }
  19. }