23 lines
436 B
PHP
23 lines
436 B
PHP
<?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()
|
|
{
|
|
return $this->belongsToMany(ProductSSL::class,$this->table,'id','id','id',$this->table.'_id');
|
|
}
|
|
|
|
public function getBillingIntervalAttribute(): int
|
|
{
|
|
return 4; // Yearly
|
|
}
|
|
} |