17 lines
253 B
PHP
17 lines
253 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'];
|
|
} |