22 lines
407 B
PHP
22 lines
407 B
PHP
<?php
|
|
|
|
namespace Modules\Slider\Entities;
|
|
|
|
use Modules\Support\Eloquent\TranslationModel;
|
|
|
|
class SliderSlideTranslation extends TranslationModel
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'file_id',
|
|
'caption_1',
|
|
'caption_2',
|
|
'direction',
|
|
'call_to_action_text',
|
|
];
|
|
}
|