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

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