<?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']; }