ProductConfiguration.php 524 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\Models;
  3. /**
  4. *
  5. * Created by PhpStorm.
  6. * User: ThurData
  7. * Date: 09.09.19
  8. * Time: 11:07
  9. * Class ProductConfiguration
  10. */
  11. class ProductConfiguration extends \ThurData\Servers\KerioEmail\Core\Models\ExtendedEloquentModel
  12. {
  13. protected $table = 'product_configuration';
  14. protected $primaryKey = 'id';
  15. protected $guarded = ['id'];
  16. protected $fillable = ['product_id', 'setting','value'];
  17. protected $softDelete = false;
  18. public $timestamps = false;
  19. }