osb/app/Models/Supplier/Phone.php

15 lines
303 B
PHP
Raw Normal View History

2022-02-01 05:40:46 +00:00
<?php
namespace App\Models\Supplier;
2022-04-19 07:07:39 +00:00
use App\Models\Product\Phone as ProductVoip;
2022-02-01 05:40:46 +00:00
2023-05-05 05:48:24 +00:00
final class Phone extends Type
2022-02-01 05:40:46 +00:00
{
2023-05-05 05:48:24 +00:00
protected const category_name = 'Phone';
2022-04-19 07:07:39 +00:00
protected $table = 'supplier_phone';
2022-02-01 05:40:46 +00:00
2023-05-05 05:48:24 +00:00
// The model of the product that is supplied by this model
const ProductModel = ProductVoip::class;
2022-02-01 05:40:46 +00:00
}