I've been working with the Bootstrap date picker inside a table, and I'm having trouble getting the date picker icon to display using the fas fa-calendar-alt
css class.
<td>
<input type="text"
id="expirydate{{$index}}"
class="form-control date-new date-only"
data-ng-init="onloadFun(this)"
ng-model="ven.expiryDate">
<i class="fas fa-calendar-alt"></i>
</td>
I attempted something like the code above but was unsuccessful in displaying the icon.