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