FleetCart/Modules/Slider/Entities/SliderSlideTranslation.php

22 lines
407 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?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',
];
}