osb/app/Models/Product/Host.php

27 lines
356 B
PHP
Raw Normal View History

2019-07-02 05:28:27 +00:00
<?php
namespace App\Models\Product;
2020-02-20 11:54:28 +00:00
use App\Models\Base\ProductType;
2019-07-02 05:28:27 +00:00
use App\Traits\NextKey;
2020-02-20 11:54:28 +00:00
class Host extends ProductType
2019-07-02 05:28:27 +00:00
{
use NextKey;
const RECORD_ID = '';
public function getContractTermAttribute(): int
{
return 12;
}
public function getTypeAttribute()
{
return 'Hosting';
}
public function hasUsage(): bool
{
return FALSE;
}
2019-07-02 05:28:27 +00:00
}