2022-02-01 05:40:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Supplier;
|
|
|
|
|
|
|
|
use App\Interfaces\SupplierItem;
|
|
|
|
use App\Models\Product\SSL as ProductSSL;
|
|
|
|
|
|
|
|
final class SSL extends Type implements SupplierItem
|
|
|
|
{
|
|
|
|
protected $table = 'supplier_ssl';
|
|
|
|
|
|
|
|
/* INTERFACES */
|
|
|
|
|
|
|
|
public function types()
|
|
|
|
{
|
2022-04-19 07:07:39 +00:00
|
|
|
return $this->belongsToMany(ProductSSL::class,$this->table,'id','id','id','supplier_item_id');
|
2022-02-01 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getBillingIntervalAttribute(): int
|
|
|
|
{
|
|
|
|
return 4; // Yearly
|
|
|
|
}
|
|
|
|
}
|