osb/app/Models/Service/Email.php

17 lines
253 B
PHP
Raw Normal View History

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