Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class FormField extends Model |
||
9 | { |
||
10 | use SoftDeletes; |
||
|
|||
11 | |||
12 | const TYPE_STRING = 1; |
||
13 | |||
14 | protected $connection = 'tenant'; |
||
15 | |||
16 | /** |
||
17 | * The attributes that are mass assignable. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $fillable = ['recruitment_id', 'label', 'type', 'required']; |
||
22 | |||
23 | public function recruitment() |
||
28 |