osb/app/Models/Supplier/Host.php

25 lines
464 B
PHP
Raw Normal View History

2022-02-01 05:40:46 +00:00
<?php
namespace App\Models\Supplier;
use App\Interfaces\SupplierItem;
use App\Models\Product\Host as ProductHost;
final class Host extends Type implements SupplierItem
{
protected const category_name = 'Web Hosting';
2022-02-01 05:40:46 +00:00
protected $table = 'supplier_host';
/* INTERFACES */
public function getBillingIntervalAttribute(): int
2022-02-01 05:40:46 +00:00
{
return 4; // Yearly
2022-02-01 05:40:46 +00:00
}
public function products()
2022-02-01 05:40:46 +00:00
{
2022-08-05 12:21:17 +00:00
return $this->hasMany(ProductHost::class,'supplier_item_id','id');
2022-02-01 05:40:46 +00:00
}
}