Total Complexity | 2 |
Total Lines | 59 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class FormbuilderTranslation extends Model |
||
11 | { |
||
12 | use CrudTrait, LogsActivity; |
||
13 | |||
14 | /* |
||
15 | |-------------------------------------------------------------------------- |
||
16 | | GLOBAL VARIABLES |
||
17 | |-------------------------------------------------------------------------- |
||
18 | */ |
||
19 | protected $table = 'med_form_translations'; |
||
20 | protected $guarded = ['id']; |
||
21 | |||
22 | /* |
||
23 | |-------------------------------------------------------------------------- |
||
24 | | FUNCTIONS |
||
25 | |-------------------------------------------------------------------------- |
||
26 | */ |
||
27 | protected $fillable = [ |
||
28 | 'title', |
||
29 | 'description', |
||
30 | 'slug', |
||
31 | 'header', |
||
32 | 'footer', |
||
33 | 'locale', |
||
34 | 'form_id', |
||
35 | 'text_button', |
||
36 | ]; |
||
37 | |||
38 | /* |
||
39 | |-------------------------------------------------------------------------- |
||
40 | | RELATIONS |
||
41 | |-------------------------------------------------------------------------- |
||
42 | */ |
||
43 | public function formbuilder() |
||
46 | } |
||
47 | public function getActivitylogOptions(): LogOptions |
||
71 |