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