laravel blade ternary operator
{{ isset($name) ? $name : 'Default' }}
we can write short form
{{ $name or 'Default' }}
but it returns the Boolean value when implement like:
{{$videos->count() or 'no video' }} //if count return 1 always,
but this code
{{ $videos->count()}} // return 4
how to implement this by short form in blade ternary operator