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 = '';
|
2021-12-24 01:14:01 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|