2022-02-01 16:40:46 +11:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Supplier;
|
|
|
|
|
|
|
|
use App\Models\Product\Generic as ProductGeneric;
|
|
|
|
|
2023-05-05 15:48:24 +10:00
|
|
|
final class Generic extends Type
|
2022-02-01 16:40:46 +11:00
|
|
|
{
|
2022-06-30 23:51:20 +10:00
|
|
|
protected const category_name = 'Generic';
|
|
|
|
|
2022-02-01 16:40:46 +11:00
|
|
|
protected $table = 'supplier_generic';
|
|
|
|
|
2023-05-05 15:48:24 +10:00
|
|
|
// The model of the product that is supplied by this model
|
|
|
|
const ProductModel = ProductGeneric::class;
|
2022-02-01 16:40:46 +11:00
|
|
|
}
|