osb/app/Models/Product/Host.php
2022-02-02 10:43:59 +11:00

27 lines
356 B
PHP

<?php
namespace App\Models\Product;
use App\Models\Base\ProductType;
use App\Traits\NextKey;
class Host extends ProductType
{
use NextKey;
const RECORD_ID = '';
public function getContractTermAttribute(): int
{
return 12;
}
public function getTypeAttribute()
{
return 'Hosting';
}
public function hasUsage(): bool
{
return FALSE;
}
}