Total Complexity | 0 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class JumbotronImage extends Model |
||
9 | { |
||
10 | protected $table = 'jumbotron_images'; |
||
11 | |||
12 | use Translatable; |
||
|
|||
13 | |||
14 | public $translatedAttributes = ['title', 'body', 'button_text']; |
||
15 | protected $fillable = [ |
||
16 | 'image_file_name', |
||
17 | 'button_url', |
||
18 | 'jumbotron_height', |
||
19 | 'cover_opacity', |
||
20 | 'scroll_down_arrow', |
||
21 | ]; |
||
23 |