Moved service.widget.status to a component
This commit is contained in:
parent
14609fb377
commit
79237868cb
6
resources/views/components/button/status.blade.php
Normal file
6
resources/views/components/button/status.blade.php
Normal file
@ -0,0 +1,6 @@
|
||||
<span {{ $attributes->class([
|
||||
'badge',
|
||||
'badge-success'=>($status === 'active'),
|
||||
'badge-warning'=>($status === 'inactive'),
|
||||
'badge-danger'=>($status === 'cancelled'),
|
||||
])->except(['status','substatus']) }}>{{ $slot->isNotEmpty() ? $slot : strtoupper($status) }}</span> @if($slot->isEmpty() && (! in_array($status,['active','cancelled'])) && isset($substatus) && $substatus)<small>[{{ strtoupper($substatus) }}]</small> @endif
|
@ -1,12 +0,0 @@
|
||||
<!-- $o=Service::class -->
|
||||
<span class="badge @if($o->isPending())badge-warning @else
|
||||
@switch ($o->status)
|
||||
@case('ACTIVE')
|
||||
badge-success
|
||||
@break;
|
||||
@case('INACTIVE')
|
||||
badge-danger
|
||||
@break;
|
||||
@endswitch
|
||||
@endif
|
||||
">{{ $o->status }}</span>
|
Loading…
Reference in New Issue
Block a user