edms2023/app/Translation.php

20 lines
301 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Translation extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'translations';
protected $fillable = [
'primary_text', 'translation_text',
];
}