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