14 lines
266 B
PHP
Executable File
14 lines
266 B
PHP
Executable File
<?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'];
|
|
}
|