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
|
|
|
|
{
|
2022-06-30 13:51:20 +00:00
|
|
|
protected const category_name = 'SSL Certificate';
|
|
|
|
|
2022-02-01 05:40:46 +00:00
|
|
|
protected $table = 'supplier_ssl';
|
|
|
|
|
|
|
|
/* INTERFACES */
|
|
|
|
|
2022-06-30 13:51:20 +00:00
|
|
|
public function getBillingIntervalAttribute(): int
|
2022-02-01 05:40:46 +00:00
|
|
|
{
|
2022-06-30 13:51:20 +00:00
|
|
|
return 4; // Yearly
|
2022-02-01 05:40:46 +00:00
|
|
|
}
|
|
|
|
|
2022-06-30 13:51:20 +00:00
|
|
|
public function products()
|
2022-02-01 05:40:46 +00:00
|
|
|
{
|
2022-06-30 13:51:20 +00:00
|
|
|
return $this->belongsToMany(ProductSSL::class,'supplier_item_id','id');
|
2022-02-01 05:40:46 +00:00
|
|
|
}
|
|
|
|
}
|