Answers for "how to give if condition in laravel blade inline"

PHP
0

if statement in laravel blade

@if($order->status == 'NEEDS REVISION')
                    <td>{{$order->status}}</td>
                @else
                    <td id="revision-status">{{$order->status}}</td>
                @endif
Posted by: Guest on September-08-2021

Code answers related to "how to give if condition in laravel blade inline"

Browse Popular Code Answers by Language