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