Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.2109 |
Changes | 0 |
1 | <?php |
||
43 | 1 | public function getIsActiveBadgeAttribute(): string |
|
44 | { |
||
45 | 1 | if ($this->is_active) { |
|
46 | 1 | return sprintf(<<<'html' |
|
47 | 1 | <div class="badge badge-success">%s</div> |
|
48 | 1 | html, trans('Active')); |
|
49 | } |
||
50 | |||
51 | return sprintf(<<<'html' |
||
52 | <div class="badge badge-danger">%s</div> |
||
53 | html, trans('Not Active')); |
||
54 | } |
||
68 |