15 lines
293 B
PHP
15 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Models\Supplier;
|
|
|
|
use App\Models\Product\SSL as ProductSSL;
|
|
|
|
final class SSL extends Type
|
|
{
|
|
protected const category_name = 'SSL';
|
|
|
|
protected $table = 'supplier_ssl';
|
|
|
|
// The model of the product that is supplied by this model
|
|
const ProductModel = ProductSSL::class;
|
|
} |