16 lines
290 B
PHP
16 lines
290 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Variation\Entities;
|
||
|
|
||
|
use Modules\Support\Eloquent\TranslationModel;
|
||
|
|
||
|
class VariationTranslation extends TranslationModel
|
||
|
{
|
||
|
/**
|
||
|
* The attributes that are mass assignable.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $fillable = ['name'];
|
||
|
}
|