20 lines
463 B
PHP
20 lines
463 B
PHP
<?php
|
|
|
|
namespace App\Models\Website;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProjectTranslation extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'website_project_translations'; // نام صحیح جدول
|
|
protected $fillable = ['project_id', 'locale', 'title', 'description'];
|
|
|
|
public function project()
|
|
{
|
|
return $this->belongsTo(Project::class, 'project_id');
|
|
}
|
|
}
|