Is there a way to incorporate fontawesome icons into the user status indicators, such as active or inactive? I've been attempting it with the following code:
<td>
<select class="statusSelect" data id="{{$user->id}}">
<option {{getStatus($user->status) == 'Active' ? 'selected' : ''}} value="a">
<i class="fa fa-minus-circle text danger"></i>
<strong> {{__('home.active')}} </strong>
</option>
<option {{getStatus($user->status) == 'Wait' ? 'selected' : ''}} value="w">
<i class="fa fa-minus-circle text-warning"> </i>
<strong> {{__('home.wait')}} </strong>
</option>
<option {{getStatus($user->status) == 'Banned' ? 'selected' : ''}} value="b">
<i class="fa fa-minus-circle text-danger"> </i>
<strong> {{__('home.ban')}} </strong>
</option>
</select>
</td>
I came across this article, but unfortunately, the solution provided did not work for me.