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

Размер файла: 375B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Models;
  6.  
  7. /**
  8. * Class Setting
  9. *
  10. * @property string $name
  11. * @property string $value
  12. */
  13. class Setting extends Model
  14. {
  15. /**
  16. * Table name
  17. */
  18. protected string $table = 'settings.csv';
  19.  
  20. /**
  21. * The attributes that should be cast.
  22. */
  23. protected array $casts = [
  24. 'name' => 'string',
  25. ];
  26. }