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