noble/app/Models/EventTranslation.php

14 lines
266 B
PHP
Raw Permalink Normal View History

2023-05-16 15:54:23 +03:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class EventTranslation extends Model
{
use HasFactory;
protected $fillable=['event_id','localization_id','title','description'];
}