家政小程序
Ви не можете вибрати більше 25 тем Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 活动信息
  6. */
  7. class Campaign extends Model
  8. {
  9. protected $fillable = [
  10. 'title', // 活动标题
  11. 'content', // 活动内容
  12. 'status']; // 活动状态
  13. }