14 lines
374 B
PHP
14 lines
374 B
PHP
<?php
|
|
|
|
namespace App\Models\Website;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProjectCategoryTranslation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'website_project_category_translations'; // نام صحیح جدول
|
|
protected $fillable = ['category_id', 'locale', 'title', 'description'];
|
|
} |