2022-02-01 05:40:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Supplier;
|
|
|
|
|
|
|
|
use App\Interfaces\SupplierItem;
|
2022-04-19 07:07:39 +00:00
|
|
|
use App\Models\Product\Phone as ProductVoip;
|
2022-02-01 05:40:46 +00:00
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
final class Phone extends Type implements SupplierItem
|
2022-02-01 05:40:46 +00:00
|
|
|
{
|
2022-06-30 13:51:20 +00:00
|
|
|
protected const category_name = 'Telephone';
|
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
protected $table = 'supplier_phone';
|
2022-02-01 05:40:46 +00:00
|
|
|
|
|
|
|
/* 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 1; // Monthly
|
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->hasMany(ProductVoip::class,'supplier_item_id','id');
|
2022-02-01 05:40:46 +00:00
|
|
|
}
|
|
|
|
}
|