22 lines
379 B
PHP
22 lines
379 B
PHP
<?php
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CategoryDescription extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'category_id',
|
|
'locale',
|
|
'name',
|
|
'content',
|
|
'meta_title',
|
|
'meta_description',
|
|
'meta_keywords',
|
|
];
|
|
}
|