osb/app/Models/Service/Email.php

18 lines
293 B
PHP
Raw Normal View History

<?php
namespace App\Models\Service;
use App\Models\Base\ServiceType;
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
*/
2022-04-19 07:07:39 +00:00
class Email extends ServiceType
{
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'];
}