IpLog.php 520 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\App\Models;
  3. use \ModulesGarden\ProxmoxAddon\Core\Models\ExtendedEloquentModel;
  4. /**
  5. * Class IpLog
  6. * @package ModulesGarden\ProxmoxAddon\App\Models
  7. * @property int $id
  8. * @property int $hosting_id
  9. * @property string $message
  10. * @property string $created_at
  11. */
  12. class IpLog extends ExtendedEloquentModel
  13. {
  14. public $timestamps = false;
  15. protected $table = 'IpLog';
  16. protected $guarded = ['id'];
  17. protected $fillable = ['hosting_id', 'message', 'created_at'];
  18. }