I want to put Bootstrap Icon inside of my blade..But the problem is i couldn't get the actual output..Means here is the sample code:
@if (($row->is_management) === 1)
<td> <span class="glyphicon glyphicon-ok"></span> </td>
@else
<td><span class="glyphicon glyphicon-remove"></span></td>
@endif
Means if status is 1 then green checked will come and in another condition red cross.
Can anyone suggest me what the actual mistake here?