Status:
@php
$status = [
0 => ['text' => 'Deactive', 'class' => 'badge badge-warning badge-pill'],
1 => ['text' => 'Active', 'class' => 'badge badge-info badge-pill'],
];
$current = $status[$showDetails->status] ?? [
'text' => 'Unknown',
'class' => 'badge rounded-pill bg-secondary',
];
@endphp
{{ $current['text'] }}