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

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