How can i use if condition with laravel blade and angular

Solution:

I think you can try this if you need use for angular if condition :

<td ng-if="pending.step1 =='Pending'">
 ----------- code here -------------------
</td>

OR you can use laravel if condition then you should use this :

  <td>
      @if(pending.step1 =='Pending')
         // here some code///
      @endif

  </td>

Hope this work for you!