EventAdv.php 280 B

123456789101112131415161718192021
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class EventAdv extends Model
  5. {
  6. protected $fillable = [
  7. 'event_id',
  8. 'name',
  9. 'position',
  10. 'google_code',
  11. 'image',
  12. 'jingle',
  13. 'url',
  14. 'online'
  15. ];
  16. }