e9f0a9ec2c
Signed-off-by: Nguyen Van Nguyen <nguyennv1981@gmail.com>
44 lines
903 B
PHP
44 lines
903 B
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* This file is part of the Zimbra Multi-Tenancy Admin Panel project.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* Mail host model
|
|
*
|
|
* @package App
|
|
* @category Models
|
|
* @author Nguyen Van Nguyen - nguyennv1981@gmail.com
|
|
*/
|
|
class MailHost extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'mail_hosts';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
'zimbra_id',
|
|
'name',
|
|
'zimbra_create',
|
|
'attributes',
|
|
'created_by',
|
|
];
|
|
}
|