2022-04-02 07:06:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models\Service;
|
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
use App\Traits\ServiceDomains;
|
2022-04-02 07:06:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Email (Service)
|
2022-04-19 07:07:39 +00:00
|
|
|
* Services that are Email Hosting
|
2022-04-02 07:06:34 +00:00
|
|
|
*/
|
2022-04-22 01:47:46 +00:00
|
|
|
class Email extends Type
|
2022-04-02 07:06:34 +00:00
|
|
|
{
|
2022-04-19 07:07:39 +00:00
|
|
|
use ServiceDomains;
|
2022-04-02 07:06:34 +00:00
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
protected $table = 'service_email';
|
|
|
|
protected $with = ['tld'];
|
2022-04-02 07:06:34 +00:00
|
|
|
}
|