Looking for a ternary operator for blade templates
@if(Auth::check()) ? yes : no @endif
Can\'t seem to get it to work this works
in addition, here is a nice shortcut ?:, if you you need to print some variable's value or if it's empty some default text
?:
{{ $value ?: 'Default Value' }}