停车场管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
638 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class AdminTranslation extends Model
{
use HasFactory, SoftDeletes;
protected $table = 'admin_translation';
protected $fillable = [
'en',
'zh_cn',
'zh_tw',
'type_id',
'type'
];
protected $hidden = [
'updated_at',
'deleted_at',
'created_at'
];
/*
翻译type 说明
1 车位类型
2 车位属性
3 停车场
4 楼层管理
*/
}