Can someone help me with setting the minimum time dynamically to the current time? For some reason, it's not working and I'm not getting any error messages. Where did I make a mistake?
$scope.mintime = new Date();
<label class="item item-input item-stacked-label">
<span class="input-label" >Preferred Time</span>
<input type="time" class="input-control" name="requestTime" ng-model="request.time" ng-change="checktime();" min="{{mintime | date:'hh:mm a'}}" required>
</label>