次のようなものが必要です。
@if ($array.length > 0) {{-- expr --}} @endif
これは可能ですか?
@if (count($array) > 0) {{-- expr --}} @endif
Php count関数を使用して、配列の長さをカウントできます。
http://php.net/manual/en/function.count.php
痛い...