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

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