osb/app/Models/Supplier/Email.php

15 lines
305 B
PHP
Raw Normal View History

<?php
namespace App\Models\Supplier;
use App\Models\Product\Email as ProductEmail;
2023-05-05 05:48:24 +00:00
final class Email extends Type
{
2023-05-05 05:48:24 +00:00
protected const category_name = 'Email';
protected $table = 'supplier_email';
2023-05-05 05:48:24 +00:00
// The model of the product that is supplied by this model
const ProductModel = ProductEmail::class;
}