|
<?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',
|
|
];
|
|
}
|