Просмотр файла app/Models/Polling.php

Размер файла: 524B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Polling
  9. *
  10. * @property int id
  11. * @property string relate_type
  12. * @property int relate_id
  13. * @property int user_id
  14. * @property string vote
  15. * @property int created_at
  16. */
  17. class Polling extends BaseModel
  18. {
  19. /**
  20. * Indicates if the model should be timestamped.
  21. *
  22. * @var bool
  23. */
  24. public $timestamps = false;
  25.  
  26. /**
  27. * The attributes that aren't mass assignable.
  28. *
  29. * @var array
  30. */
  31. protected $guarded = [];
  32. }