cms-token/@core/app/SupportDepartment.php

12 lines
204 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class SupportDepartment extends Model
{
protected $table = 'support_departments';
protected $fillable = ['name','lang','status'];
}