admin-panel-zimbra-api/app/Models/ClassOfService.php
Nguyen Van Nguyen e9f0a9ec2c first commit
Signed-off-by: Nguyen Van Nguyen <nguyennv1981@gmail.com>
2024-04-22 14:45:23 +07:00

49 lines
1,014 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;
/**
* Class of service model
*
* @package App
* @category Models
* @author Nguyen Van Nguyen - nguyennv1981@gmail.com
*/
class ClassOfService extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'class_of_services';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'zimbra_id',
'name',
'mail_quota',
'max_accounts',
'zimbra_create',
'description',
'attributes',
'created_by',
'updated_by',
];
}