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

12 lines
218 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AppointmentCategoryLang extends Model
{
protected $table = 'appointment_category_langs';
protected $fillable = ['cat_id','title','lang'];
}