19 lines
259 B
PHP
19 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Models\Service;
|
|
|
|
use App\Traits\ServiceDomains;
|
|
|
|
/**
|
|
* Class Email (Service)
|
|
* Services that are Email Hosting
|
|
*/
|
|
class Email extends Type
|
|
{
|
|
use ServiceDomains;
|
|
|
|
protected $table = 'service_email';
|
|
protected $with = [
|
|
'tld',
|
|
];
|
|
} |