Activity.php 475 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. class Activity extends Model
  6. {
  7. use SoftDeletes;
  8. protected $table='activity';
  9. protected $fillable = ['title','start_time','end_time','big_gift','honor_wall','is_ing','super_up','top_down','top_up','crown_down','contents','disabled'];
  10. public function gift()
  11. {
  12. return $this->hasMany('App\Models\Gifts','activity_id','id');
  13. }
  14. }