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

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